github.com/inazumav/sing-box@v0.0.0-20230926072359-ab51429a14f1/common/tls/common.go (about) 1 package tls 2 3 const ( 4 VersionTLS10 = 0x0301 5 VersionTLS11 = 0x0302 6 VersionTLS12 = 0x0303 7 VersionTLS13 = 0x0304 8 9 // Deprecated: SSLv3 is cryptographically broken, and is no longer 10 // supported by this package. See golang.org/issue/32716. 11 VersionSSL30 = 0x0300 12 )