mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-09 18:43:14 +00:00
13 lines
266 B
Go
13 lines
266 B
Go
package tls
|
|
|
|
const (
|
|
VersionTLS10 = 0x0301
|
|
VersionTLS11 = 0x0302
|
|
VersionTLS12 = 0x0303
|
|
VersionTLS13 = 0x0304
|
|
|
|
// Deprecated: SSLv3 is cryptographically broken, and is no longer
|
|
// supported by this package. See golang.org/issue/32716.
|
|
VersionSSL30 = 0x0300
|
|
)
|