Discuss this help topic in SecureBlackbox Forum
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;
}
Possible values
Declared in
.NET:
- Namespace: SBTSPClient
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum