mirror of
https://github.com/containers/skopeo.git
synced 2025-09-03 23:55:21 +00:00
... and c/image/v5 to main Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Signed-off-by: Miloslav Trmač <mitr@redhat.com>
15 lines
460 B
Go
15 lines
460 B
Go
// Package tlsconfig provides primitives to retrieve secure-enough TLS configurations for both clients and servers.
|
|
package tlsconfig
|
|
|
|
import (
|
|
"crypto/tls"
|
|
)
|
|
|
|
// Client TLS cipher suites (dropping CBC ciphers for client preferred suite set)
|
|
var clientCipherSuites = []uint16{
|
|
tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,
|
|
tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
|
|
tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
|
|
tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
|
|
}
|