Discuss this help topic in SecureBlackbox Forum
Defines possible certificate chain types
Declaration
[C#/Java]
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;
Description
Possible values:
Declared in
.NET:
- Namespace: SBSSLCommon
- Assembly: SecureBlackbox.SSLCommon
VCL:Java:
- Package: SecureBlackbox.SSLCommon.jar
C++:
Discuss this help topic in SecureBlackbox Forum