Discuss this help topic in SecureBlackbox Forum

TSBCertReqFileFormat

Declared in     


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


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;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBPKCS10
  • Assembly: SecureBlackbox.PKI
VCL:
  • Unit: SBPKCS10
Java:
  • Package: SecureBlackbox.PKI.jar
C++:
  • sbpkcs10.h

Discuss this help topic in SecureBlackbox Forum