Discuss this help topic in SecureBlackbox Forum
This type defines various OCSP client options.
Declaration
[C#]
TSBOCSPClientOption = short;
const short ocoIncludeVersion = 0;
const short ocoIncludeSupportedResponseTypes = 1;
[VB.NET]
TSBOCSPClientOption As Short
Const ocoIncludeVersion As Short = 0
Const ocoIncludeSupportedResponseTypes As Short = 1
[Pascal]
TSBOCSPClientOption = (ocoIncludeVersion, ocoIncludeSupportedResponseTypes);
[C++]
typedef uint8_t TSBOCSPClientOptionRaw;
typedef enum { ocoIncludeVersion = 0, ocoIncludeSupportedResponseTypes = 1 } TSBOCSPClientOption;
typedef uint32_t TSBOCSPClientOptionsRaw;
typedef enum { f_ocoIncludeVersion = 1, f_ocoIncludeSupportedResponseTypes = 2 } TSBOCSPClientOptions;
[PHP]
class TSBOCSPClientOption extends TSBBaseEnum {
const ocoIncludeVersion = 0;
const ocoIncludeSupportedResponseTypes = 1;
}
Possible values
Declared in
.NET:
- Namespace: SBOCSPClient
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum