Discuss this help topic in SecureBlackbox Forum

TSBCAIdentifierType

Declared in     


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


Defines possible CA certificate identifier types

Declaration

[C#]
    public enum TSBCAIdentifierType { itPreAgreed = 0, itKeyHash = 1, itRDN = 2, itCertHash = 3, itUnknown = 4 };

[VB.NET]
    Enum TSBCAIdentifierType
        itPreAgreed = 0
        itKeyHash = 1
        itRDN = 2
        itCertHash = 3
        itUnknown = 4
    End Enum

[Pascal]
    TSBCAIdentifierType = (itPreAgreed, itKeyHash, itRDN, itCertHash, itUnknown);

[C++]
    typedef uint8_t TSBCAIdentifierTypeRaw;
    typedef enum { itPreAgreed = 0, itKeyHash = 1, itRDN = 2, itCertHash = 3, itUnknown = 4 } TSBCAIdentifierType;

[PHP]
    class TSBCAIdentifierType extends TSBBaseEnum {
        const itPreAgreed = 0;
        const itKeyHash = 1;
        const itRDN = 2;
        const itCertHash = 3;
        const itUnknown = 4;
    }

[Java]
    public enum TSBCAIdentifierType { itPreAgreed, itKeyHash, itRDN, itCertHash, itUnknown }

Possible values

Declared in

.NET:
  • Namespace: SBSSLCommon
  • Assembly: SecureBlackbox.SSLCommon
VCL:
  • Unit: SBSSLCommon
Java:
  • Package: SecureBlackbox.SSLCommon.jar
C++:
  • sbsslcommon.h

Discuss this help topic in SecureBlackbox Forum