Discuss this help topic in SecureBlackbox Forum

TSBCertStorageOptions

Declared in     See also     


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


Declaration

[C#]
    TSBCertStorageOptions = int;
        const int csoStrictChainBuilding = 1;
        const int csoIgnoreInvalidCertificates = 2;

[VB.NET]
    TSBCertStorageOptions As Integer
        Const csoStrictChainBuilding As Integer = 1
        Const csoIgnoreInvalidCertificates As Integer = 2

[Pascal]
    under development

[C++]
    typedef uint8_t TSBCertStorageOptionRaw;
    typedef enum { csoStrictChainBuilding = 0, csoIgnoreInvalidCertificates = 1 } TSBCertStorageOption;
    
    typedef uint32_t TSBCertStorageOptionsRaw;
    typedef enum { f_csoStrictChainBuilding = 1, f_csoIgnoreInvalidCertificates = 2 } TSBCertStorageOptions;

[PHP]
    class TSBCertStorageOptions extends TSBBaseEnum {
        const csoStrictChainBuilding = 1;
        const csoIgnoreInvalidCertificates = 2;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBCustomCertStorage
  • Assembly: SecureBlackbox...
VCL:
  • Unit: SBCustomCertStorage
Java:
  • Package: SecureBlackbox...jar
C++:
  • sbcustomcertstorage.h

See also:     TSBCertStorageOption    

Discuss this help topic in SecureBlackbox Forum