Discuss this help topic in SecureBlackbox Forum
Defines possible SSL/TLS versions.
Declaration
[C#/Java]
TSBVersion = short;
const short sbSSL2 = 1;
const short sbSSL3 = 2;
const short sbTLS1 = 4;
const short sbTLS11 = 8;
const short sbTLS12 = 16;
[VB.NET]
TSBVersion As SmallInt
Const sbSSL2 As SmallInt = 1
Const sbSSL3 As SmallInt = 2
Const sbTLS1 As SmallInt = 4
Const sbTLS11 As SmallInt = 8
Const sbTLS12 As SmallInt = 16
[Pascal]
TSBVersion = (sbSSL2, sbSSL3, sbTLS1, sbTLS11, sbTLS12);
[C++]
typedef uint8_t TSBVersionRaw;
typedef enum
{
sbSSL2 = 0,
sbSSL3 = 1,
sbTLS1 = 2,
sbTLS11 = 3,
sbTLS12 = 4
} TSBVersion;
typedef uint32_t TSBVersionsRaw;
typedef enum
{
f_sbSSL2 = 1,
f_sbSSL3 = 2,
f_sbTLS1 = 4,
f_sbTLS11 = 8,
f_sbTLS12 = 16
} TSBVersions;
Description
Possible values:
Declared in
.NET:
- Namespace: SBSSLConstants
- Assembly: SecureBlackbox.SSLCommon
VCL:Java:C++:
Discuss this help topic in SecureBlackbox Forum