Discuss this help topic in SecureBlackbox Forum
Defines possible certificate request file types.
Declaration
[C#/Java]
TSBCertReqFileFormat = int;
const int crfUnknown = 0;
const int crfDER = 1;
const int crfPEM = 2;
[VB.NET]
TSBCertReqFileFormat As Integer
Const crfUnknown As Integer = 0
Const crfDER As Integer = 1
Const crPEM As Integer = 2
[Pascal]
TSBCertReqFileFormat = (crfUnknown, crfDER, crfPEM);
[C++]
typedef uint8_t TSBCertReqFileFormatRaw;
typedef enum { crfUnknown = 0, crfDER = 1, crfPEM = 2 } TSBCertReqFileFormat;
Description
Possible values:
Declared in
.NET:
- Namespace: SBPKCS10
- Assembly: SecureBlackbox.PKI
VCL:Java:
- Package: SecureBlackbox.PKI.jar
C++:
Discuss this help topic in SecureBlackbox Forum