Discuss this help topic in SecureBlackbox Forum

TSBCertFileFormat

Declared in     See also     


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


Defines possible certificate types.

Declaration

[C#]
    TSBCertFileFormat = short;
        const short cfUnknown = 0;
        const short cfDER = 1;
        const short cfPEM = 2;
        const short cfPFX = 3;
        const short cfSPC = 4;

[VB.NET]
    TSBCertFileFormat As Short
        Const cfUnknown As Short = 0
        Const cfDER As Short = 1
        Const cfPEM As Short = 2
        Const cfPFX As Short = 3
        Const cfSPC As Short = 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;

[PHP]
    class TSBCertFileFormat extends TSBBaseEnum {
        const cfUnknown = 0;
        const cfDER = 1;
        const cfPEM = 2;
        const cfPFX = 3;
        const cfSPC = 4;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBX509
  • Assembly: SecureBlackbox
VCL:
  • Unit: SBX509
Java:
  • Package: SecureBlackbox.Base.jar
C++:
  • sbx509.h

See also:     InternalValidate     SBCertificateValidityReason    

Discuss this help topic in SecureBlackbox Forum