Discuss this help topic in SecureBlackbox Forum

TSBCertChainType

Declared in     


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


Defines possible certificate chain types

Declaration

[C#]
    public enum TSBCertChainType { cctIndividualCerts = 0, cctPKIPath = 1, cctUnknown = 2 };

[VB.NET]
    Enum TSBCertChainType
        cctIndividualCerts = 0
        cctPKIPath = 1
        cctUnknown = 2
    End Enum

[Pascal]
    TSBCertChainType = (cctIndividualCerts, cctPKIPath, cctUnknown);

[C++]
    typedef uint8_t TSBCertChainTypeRaw;
    typedef enum { cctIndividualCerts = 0, cctPKIPath = 1, cctUnknown = 2 } TSBCertChainType;

[PHP]
    class TSBCertChainType extends TSBBaseEnum {
        const cctIndividualCerts = 0;
        const cctPKIPath = 1;
        const cctUnknown = 2;
    }

[Java]
    public enum TSBCertChainType { cctIndividualCerts, cctPKIPath, cctUnknown }

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