Discuss this help topic in SecureBlackbox Forum

TSBTSPRequestFormat

Declared in     


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


Defines possible formats of Time-Stamp (TSP) requests.

Declaration

[C#]
    TSBTSPRequestFormat = short;
        const short tsfRFC3161 = 0;
        const short tsfCMS = 1;

[VB.NET]
    TSBTSPRequestFormat As Short
        Const tsfRFC3161 As Short = 0
        Const tsfCMS As Short = 1

[Pascal]
    TSBTSPRequestFormat = (tsfRFC3161, tsfCMS);

[C++]
    typedef uint8_t TSBTSPRequestFormatRaw;
    typedef enum { tsfRFC3161 = 0, tsfCMS = 1 } TSBTSPRequestFormat;

[PHP]
    class TSBTSPRequestFormat extends TSBBaseEnum {
        const tsfRFC3161 = 0;
        const tsfCMS = 1;
    }

[Java]
    not available

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