Discuss this help topic in SecureBlackbox Forum
Defines possible search criteria.
Declaration
[C#/Java]
TSBCRLLookupCriterion = int;
const short clcIssuer = 1;
const short clcDistributionPoint = 2;
const short clcNumber = 4;
const short clcReason = 8;
const short clcAuthorityKeyIdentifier = 16;
const short clcBaseCRLNumber = 32;
[VB.NET]
TSBCRLLookupCriterion As Integer
Const clcIssuer As SmallInt = 1
Const clcDistributionPoint As SmallInt = 2
Const clcNumber As SmallInt = 4
Const clcReason As SmallInt = 8
Const clcAuthorityKeyIdentifier As SmallInt = 16
Const clcBaseCRLNumber As SmallInt = 32
[Pascal]
TSBCRLLookupCriterion = (clcIssuer, clcDistributionPoint, clcNumber, clcReason, clcAuthorityKeyIdentifier, clcBaseCRLNumber);
[C++]
typedef uint8_t TSBCRLLookupCriterionRaw;
typedef enum { clcIssuer = 0, clcDistributionPoint = 1, clcNumber = 2, clcReason = 3, clcAuthorityKeyIdentifier = 4, clcBaseCRLNumber = 5 } TSBCRLLookupCriterion;
typedef uint32_t TSBCRLLookupCriteriaRaw;
typedef enum { f_clcIssuer = 1, f_clcDistributionPoint = 2, f_clcNumber = 4, f_clcReason = 8, f_clcAuthorityKeyIdentifier = 16, f_clcBaseCRLNumber = 32 } TSBCRLLookupCriteria;
Description
Possible values:
Declared in
.NET:
- Namespace: SBCRLStorage
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum