Discuss this help topic in SecureBlackbox Forum

TSBKeyStoreFormat

Declared in     


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


This topic is under development…

Declaration

[C#]
    public enum TSBKeyStoreFormat { ksfRaw = 0, ksfPKCS8 = 1 };

[VB.NET]
    Enum TSBKeyStoreFormat
        ksfRaw = 0
        ksfPKCS8 = 1
    End Enum

[Pascal]
    TSBKeyStoreFormat = (ksfRaw, ksfPKCS8);

[C++]
    typedef uint8_t TSBKeyStoreFormatRaw;
    typedef enum { ksfRaw = 0, ksfPKCS8 = 1 } TSBKeyStoreFormat;

[PHP]
    class TSBKeyStoreFormat extends TSBBaseEnum {
        const ksfRaw = 0;
        const ksfPKCS8 = 1;
    }

[Java]
    public enum TSBKeyStoreFormat { ksfRaw, ksfPKCS8 }

Possible values

Declared in

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

Discuss this help topic in SecureBlackbox Forum