Discuss this help topic in SecureBlackbox Forum
Defines possible certificate types.
Declaration
[C#/Java]
TSBCertFileFormat = int;
const short cfUnknown = 0;
const short cfDER = 1;
const short cfPEM = 2;
const short cfPFX = 3;
const short cfSPC = 4;
[VB.NET]
TSBCertFileFormat As Integer
Const cfUnknown As SmallInt = 0
Const cfDER As SmallInt = 1
Const cfPEM As SmallInt = 2
Const cfPFX As SmallInt = 3
Const cfSPC As SmallInt = 4
[Pascal]
TSBCertFileFormat = (cfUnknown, cfDER, cfPEM, cfPFX, cfSPC);
[C++]
typedef uint8_t TSBCertFileFormatRaw;
typedef enum { cfUnknown = 0, cfDER = 1, cfPEM = 2, cfPFX = 3, cfSPC = 4 } TSBCertFileFormat;
Description
Possible values:
Declared in
.NET:
- Namespace: SBX509
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum