Discuss this help topic in SecureBlackbox Forum
Defines certificate request options.
Declaration
[C#/Java]
TSBCertificateRequestOption = short;
const short croGenerateKeyIdentifier = 1;
const short croUseMSExtensionIdentifier = 2;
const short croAutoAdjustTagTypes = 4;
[VB.NET]
TSBCertificateRequestOption As SmallInt
Const croGenerateKeyIdentifier As SmallInt = 1
Const croUseMSExtensionIdentifier As SmallInt = 2
Const croAutoAdjustTagTypes As SmallInt = 4
[Pascal]
TSBCertificateRequestOption = (croGenerateKeyIdentifier, croUseMSExtensionIdentifier, croAutoAdjustTagTypes);
[C++]
typedef uint8_t TSBCertificateRequestOptionRaw;
typedef enum { croGenerateKeyIdentifier = 0, croUseMSExtensionIdentifier = 1, croAutoAdjustTagTypes = 2 } TSBCertificateRequestOption;
typedef uint32_t TSBCertificateRequestOptionsRaw;
typedef enum { f_croGenerateKeyIdentifier = 1, f_croUseMSExtensionIdentifier = 2, f_croAutoAdjustTagTypes = 4 } TSBCertificateRequestOptions;
Description
Possible values:
Declared in
.NET:
- Namespace: SBPKCS10
- Assembly: SecureBlackbox.PKI
VCL:Java:
- Package: SecureBlackbox.PKI.jar
C++:
Discuss this help topic in SecureBlackbox Forum