Discuss this help topic in SecureBlackbox Forum
Defines possible storage types where certificates can be read from.
Declaration
[C#/Java]
enum TSBStorageType { stSystem = 0, stRegistry = 1, stLDAP = 2, stMemory = 3 };
[VB.NET]
Enum TSBStorageType
stSystem = 0
stRegistry = 1
stLDAP = 2
stMemory = 3
End Enum
[Pascal]
TSBStorageType = (stSystem, stRegistry, stLDAP, stMemory);
[C++]
typedef uint8_t TSBStorageTypeRaw;
typedef enum { stSystem = 0, stRegistry = 1, stLDAP = 2, stMemory = 3 } TSBStorageType;
Description
Possible values:
Declared in
.NET:
- Namespace: SBWinCertStorage
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum