Discuss this help topic in SecureBlackbox Forum
Defines possible OCSP Responder error messages
Declaration
[C#]
TElOCSPServerError = short;
const short oseSuccessful = 0;
const short oseMalformedRequest = 1;
const short oseInternalError = 2;
const short oseTryLater = 3;
const short oseUnused1 = 4;
const short oseSigRequired = 5;
const short oseUnauthorized = 6;
[VB.NET]
TElOCSPServerError As Short
Const oseSuccessful As Short = 0
Const oseMalformedRequest As Short = 1
Const oseInternalError As Short = 2
Const oseTryLater As Short = 3
Const oseUnused1 As Short = 4
Const oseSigRequired As Short = 5
Const oseUnauthorized As Short = 6
[Pascal]
TElOCSPServerError = (oseSuccessful, oseMalformedRequest, oseInternalError, oseTryLater, oseSigRequired, oseUnauthorized);
[C++]
typedef uint8_t TElOCSPServerErrorRaw;
typedef enum { oseSuccessful = 0, oseMalformedRequest = 1, oseInternalError = 2, oseTryLater = 3, oseUnused1 = 4, oseSigRequired = 5, oseUnauthorized = 6 } TElOCSPServerError;
[PHP]
class TElOCSPServerError extends TSBBaseEnum {
const oseSuccessful = 0;
const oseMalformedRequest = 1;
const oseInternalError = 2;
const oseTryLater = 3;
const oseUnused1 = 4;
const oseSigRequired = 5;
const oseUnauthorized = 6;
}
Possible values
Declared in
.NET:
- Namespace: SBOCSPCommon
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum