mirror of
https://github.com/minio/minio.git
synced 2026-03-23 11:07:44 -04:00
This change restircts the supported cipher suites of the minio server. The server only supports AEAD ciphers (Chacha20Poly1305 and AES-GCM) The supported cipher suites are: - tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305 - tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305 - tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 - tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 - tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 - tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 Fixes #5244 and #5291 |
||
|---|---|---|
| .. | ||
| bufconn.go | ||
| bufconn_test.go | ||
| conn_bug_21133.go | ||
| listener.go | ||
| listener_test.go | ||
| server.go | ||
| server_test.go | ||