Discuss this help topic in SecureBlackbox Forum
TSBSAMLKeyUse defines possible purposes of the cryptographic key described by TElSAMLKeyDescriptorElement.
Declaration
[C#]
public enum TSBSAMLKeyUse { skuNone = 0, skuEncryption = 1, skuSigning = 2 };
[VB.NET]
Enum TSBSAMLKeyUse
skuNone = 0
skuEncryption = 1
skuSigning = 2
End Enum
[Pascal]
TSBSAMLKeyUse = (skuNone, skuEncryption, skuSigning);
[C++]
typedef uint8_t TSBSAMLKeyUseRaw;
typedef enum { skuNone = 0, skuEncryption = 1, skuSigning = 2 } TSBSAMLKeyUse;
[PHP]
class TSBSAMLKeyUse extends TSBBaseEnum {
const skuNone = 0;
const skuEncryption = 1;
const skuSigning = 2;
}
[Java]
public enum TSBSAMLKeyUse { skuNone, skuEncryption, skuSigning }
Possible values
Declared in
.NET:
- Namespace: SBXMLSAMLMetadata
- Assembly: SecureBlackbox.SAMLCommon
VCL:Java:
- Package: SecureBlackbox.SAMLCommon.jar
C++:
Discuss this help topic in SecureBlackbox Forum