Discuss this help topic in SecureBlackbox Forum
Defines possible types of certificates.
Declaration
[C#]
public enum TElPKCS11CertificateType { pctX509 = 0, pctWTLS = 1, pctAttribute = 2, pctVendorDefined = 3 };
[VB.NET]
Enum TElPKCS11CertificateType
pctX509 = 0
pctWTLS = 1
pctAttribute = 2
pctVendorDefined = 3
End Enum
[Pascal]
TElPKCS11CertificateType = (pctX509, pctWTLS, pctAttribute, pctVendorDefined);
[C++]
typedef uint8_t TElPKCS11CertificateTypeRaw;
typedef enum { pctX509 = 0, pctWTLS = 1, pctAttribute = 2, pctVendorDefined = 3 } TElPKCS11CertificateType;
[PHP]
class TElPKCS11CertificateType extends TSBBaseEnum {
const pctX509 = 0;
const pctWTLS = 1;
const pctAttribute = 2;
const pctVendorDefined = 3;
}
[Java]
public enum TElPKCS11CertificateType { pctX509, pctWTLS, pctAttribute, pctVendorDefined }
Possible values
Declared in
.NET:VCL:Java:
- Package: SecureBlackbox.PKI.jar
C++:
Discuss this help topic in SecureBlackbox Forum