Discuss this help topic in SecureBlackbox Forum

TSBTSPOption

Declared in     


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


Specifies various TSP (Time-Stamp Protocol) options.

Declaration

[C#/Java]
    TSBTSPOption = int;
        const int tsoIncludeReqPolicy = 1;
        const int tsoIgnoreBadSignature = 2;
        const int tsoIgnoreBadNonce = 4;

[VB.NET]
    TSBTSPOption As Integer
        Const tsoIncludeReqPolicy As Integer = 1
        Const tsoIgnoreBadSignature As Integer = 2
        Const tsoIgnoreBadNonce As Integer = 4

[Pascal]
    TSBTSPOption = (tsoIncludeReqPolicy, tsoIgnoreBadSignature, tsoIgnoreBadNonce);

[C++]
    typedef uint8_t TSBTSPOptionRaw;
    typedef enum { tsoIncludeReqPolicy = 0, tsoIgnoreBadSignature = 1, tsoIgnoreBadNonce = 2 } TSBTSPOption;
    
    typedef uint32_t TSBTSPOptionsRaw;
    typedef enum { f_tsoIncludeReqPolicy = 1, f_tsoIgnoreBadSignature = 2, f_tsoIgnoreBadNonce = 4 } TSBTSPOptions;

Description

Possible values:


Declared in

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

Discuss this help topic in SecureBlackbox Forum