Discuss this help topic in SecureBlackbox Forum

TSBSAMLKeyUse

Declared in     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


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:
  • Unit: SBXMLSAMLMetadata
Java:
  • Package: SecureBlackbox.SAMLCommon.jar
C++:
  • sbxmlsamlmetadata.h

Discuss this help topic in SecureBlackbox Forum