Discuss this help topic in SecureBlackbox Forum
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:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum