TlsVersion
Enumerates TLS versions known to this protocol suite.
Content copied to clipboard
elide.crypto.TlsVersion
Properties
Link copied to clipboard
Indicates a protocol-incompatible enumeration value, or that TLS is not active.
Content copied to clipboard
TLS_INACTIVE = 0;
Link copied to clipboard
buf:lint:ignore ENUM_VALUE_UPPER_SNAKE_CASE
Indicates that TLS 1.0 is active.
Content copied to clipboard
TLSv1_0 = 1;
Link copied to clipboard
buf:lint:ignore ENUM_VALUE_UPPER_SNAKE_CASE
Indicates that TLS 1.1 is active.
Content copied to clipboard
TLSv1_1 = 2;
Link copied to clipboard
buf:lint:ignore ENUM_VALUE_UPPER_SNAKE_CASE
Indicates that TLS 1.2 is active.
Content copied to clipboard
TLSv1_2 = 3;
Link copied to clipboard
buf:lint:ignore ENUM_VALUE_UPPER_SNAKE_CASE
Indicates that TLS 1.3 is active.
Content copied to clipboard
TLSv1_3 = 4;
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
Link copied to clipboard
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.