github.com/searKing/golang/go@v1.2.74/crypto/tls/version.go (about) 1 // Copyright 2020 The searKing Author. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package tls 6 7 import "crypto/tls" 8 9 var Versions = []int{ 10 tls.VersionSSL30, 11 tls.VersionTLS10, 12 tls.VersionTLS11, 13 tls.VersionTLS12, 14 tls.VersionTLS13, 15 }