mirror of
https://github.com/securego/gosec.git
synced 2024-11-06 03:55:50 +00:00
df484bfa9e
* cmd/tlsconfig: build tags to deprecate tls.VersionSSL30 from go1.14 * cmd/tlsconfig: build tags to turn off TLSv1.3 in go1.11
29 lines
552 B
Go
29 lines
552 B
Go
// +build go1.14 !go1.11
|
|
|
|
// main
|
|
package main
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"sort"
|
|
)
|
|
|
|
func mapTLSVersions(tlsVersions []string) []int {
|
|
var versions []int
|
|
for _, tlsVersion := range tlsVersions {
|
|
switch tlsVersion {
|
|
case "TLSv1.3":
|
|
versions = append(versions, tls.VersionTLS13)
|
|
case "TLSv1.2":
|
|
versions = append(versions, tls.VersionTLS12)
|
|
case "TLSv1.1":
|
|
versions = append(versions, tls.VersionTLS11)
|
|
case "TLSv1":
|
|
versions = append(versions, tls.VersionTLS10)
|
|
default:
|
|
continue
|
|
}
|
|
}
|
|
sort.Ints(versions)
|
|
return versions
|
|
}
|