Discuss this help topic in SecureBlackbox Forum
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:Java:
- Package: SecureBlackbox.SSLCommon.jar
C++:
Discuss this help topic in SecureBlackbox Forum