Discuss this help topic in SecureBlackbox Forum
Defines standard extensions that can be included in
CRLExtensions class.
Declaration
[C#/Java]
TSBCRLExtension = int;
const short crlAuthorityKeyIdentifier = 1;
const short crlIssuerAlternativeName = 2;
const short crlCRLNumber = 4;
const short crlDeltaCRLIndicator = 8;
const short crlIssuingDistributionPoint = 16;
[VB.NET]
TSBCRLExtension As Integer
Const crlAuthorityKeyIdentifier As SmallInt = 1
Const crlIssuerAlternativeName As SmallInt = 2
Const crlCRLNumber As SmallInt = 4
Const crlDeltaCRLIndicator As SmallInt = 8
Const crlIssuingDistributionPoint As SmallInt = 16
[Pascal]
TSBCRLExtension = (crlAuthorityKeyIdentifier, crlIssuerAlternativeName, crlCRLNumber, crlDeltaCRLIndicator);
[C++]
typedef uint8_t TSBCRLExtensionRaw;
typedef enum { crlAuthorityKeyIdentifier = 0, crlIssuerAlternativeName = 1, crlCRLNumber = 2, crlDeltaCRLIndicator = 3, crlIssuingDistributionPoint = 4 } TSBCRLExtension;
typedef uint32_t TSBCRLExtensionsRaw;
typedef enum { f_crlAuthorityKeyIdentifier = 1, f_crlIssuerAlternativeName = 2, f_crlCRLNumber = 4, f_crlDeltaCRLIndicator = 8, f_crlIssuingDistributionPoint = 16 } TSBCRLExtensions;
Description
Possible values:
Declared in
.NET:
- Namespace: SBCRL
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum