Discuss this help topic in SecureBlackbox Forum
Defines possible search criteria.
Declaration
[C#]
TSBCRLLookupCriterion = short;
const short clcIssuer = 0;
const short clcDistributionPoint = 1;
const short clcNumber = 2;
const short clcReason = 3;
const short clcAuthorityKeyIdentifier = 4;
const short clcBaseCRLNumber = 5;
[VB.NET]
TSBCRLLookupCriterion As Short
Const clcIssuer As Short = 0
Const clcDistributionPoint As Short = 1
Const clcNumber As Short = 2
Const clcReason As Short = 3
Const clcAuthorityKeyIdentifier As Short = 4
Const clcBaseCRLNumber As Short = 5
[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;
[PHP]
class TSBCRLLookupCriterion extends TSBBaseEnum {
const clcIssuer = 0;
const clcDistributionPoint = 1;
const clcNumber = 2;
const clcReason = 3;
const clcAuthorityKeyIdentifier = 4;
const clcBaseCRLNumber = 5;
}
Possible values
Declared in
.NET:
- Namespace: SBCRLStorage
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum