Discuss this help topic in SecureBlackbox Forum

TSBCertStorageOption

Declared in     


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


This topic is under development…

Declaration

[C#]
    TSBCertStorageOption = short;
        const short csoStrictChainBuilding = 0;
        const short csoIgnoreInvalidCertificates = 1;

[VB.NET]
    TSBCertStorageOption As Short
        Const csoStrictChainBuilding As Short = 0
        Const csoIgnoreInvalidCertificates As Short = 1

[Pascal]
    TSBCertStorageOption = (csoStrictChainBuilding);

[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 TSBCertStorageOption extends TSBBaseEnum {
        const csoStrictChainBuilding = 0;
        const csoIgnoreInvalidCertificates = 1;
    }

[Java]
    not available

Possible values

Declared in

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

Discuss this help topic in SecureBlackbox Forum