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