Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
public enum TSBSAMLKeyUse { skuNone = 0, skuEncryption = 1, skuSigning = 2 };
[VB.NET]
Enum TSBSAMLKeyUse
skuNone = 0
skuEncryption = 1
skuSigning = 2
End Enum
[Pascal]
under development
[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