Discuss this help topic in SecureBlackbox Forum

TSBX509KeyFileFormat

Declared in     


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


Defines key file formats.

Declaration

[C#/Java]
    TSBX509KeyFileFormat = int;
        const short kffUnknown = 0;
        const short kffDER = 1;
        const short kffPEM = 2;
        const short kffPFX = 3;
        const short kffPVK = 4;
        const short kffNET = 5;
        const short kffPKCS8 = 6;

[VB.NET]
    TSBX509KeyFileFormat As Integer
        Const kffUnknown As SmallInt = 0
        Const kffDER As SmallInt = 1
        Const kffPEM As SmallInt = 2
        Const kffPFX As SmallInt = 3
        Const kffPVK As SmallInt = 4
        Const kffNET As SmallInt = 5
        Const kffPKCS8 As SmallInt = 6

[Pascal]
    TSBX509KeyFileFormat = (kffUnknown, kffDER, kffPEM, kffPFX, kffPVK, kffNET, kffPKCS8);

[C++]
    typedef uint8_t TSBX509KeyFileFormatRaw;
    typedef enum { kffUnknown = 0, kffDER = 1, kffPEM = 2, kffPFX = 3, kffPVK = 4, kffNET = 5, kffPKCS8 = 6 } TSBX509KeyFileFormat;

Description

Possible values:


Declared in

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

Discuss this help topic in SecureBlackbox Forum