Discuss this help topic in SecureBlackbox Forum
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;
}
Possible values
Declared in
.NET:
- Namespace: SBCustomCertStorage
- Assembly: SecureBlackbox...
VCL:
- Unit: SBCustomCertStorage
Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum