Discuss this help topic in SecureBlackbox Forum
Defines the action to be taken after encountering a certificate.
Declaration
[C#/Java]
enum TElInstructionCode {icNone = 0, icCallIssuer = 1, icReject = 2};
[VB.NET]
Enum TElInstructionCode
icNone = 0
icCallIssuer = 1
icReject = 2
End Enum
[Pascal]
TElInstructionCode = (icNone, icCallIssuer, icReject);
[C++]
typedef uint8_t TElInstructionCodeRaw;
typedef enum { icNone = 0, icCallIssuer = 1, icReject = 2 } TElInstructionCode;
Description
Values according to the RFC 2459 (Housley, et. al.)
Declared in
.NET:
- Namespace: SBCRL
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum