Discuss this help topic in SecureBlackbox Forum

TSBOCSPClientOption

Declared in     


Filter: C#/Java  VB.NET  Pascal  C++  


This type defines various OCSP client options.

Declaration

[C#/Java]
    TSBOCSPClientOption = int;
        const int ocoIncludeVersion = 1;
        const int ocoIncludeSupportedResponseTypes = 2;

[VB.NET]
    TSBOCSPClientOption As Integer
        Const ocoIncludeVersion As Integer = 1
        Const ocoIncludeSupportedResponseTypes As Integer = 2

[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;

Description

Possible values:


Declared in

.NET:
  • Namespace: SBOCSPClient
  • Assembly: SecureBlackbox
VCL:
  • Unit: SBOCSPClient
Java:
  • Package: SecureBlackbox.Base.jar
C++:
  • sbocspclient.h

Discuss this help topic in SecureBlackbox Forum