Discuss this help topic in SecureBlackbox Forum

TSBStorageType

Declared in     See also     


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


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:
  • Unit: SBWinCertStorage
Java:
  • Package: SecureBlackbox.Base.jar
C++:
  • sbwincertstorage.h

See also:     StorageType    

Discuss this help topic in SecureBlackbox Forum