SupportedCipherSuites returns a list of all the cipher suites Caddy supports. The list is NOT ordered by security preference.
()
| 43 | // SupportedCipherSuites returns a list of all the cipher suites |
| 44 | // Caddy supports. The list is NOT ordered by security preference. |
| 45 | func SupportedCipherSuites() []*tls.CipherSuite { |
| 46 | return tls.CipherSuites() |
| 47 | } |
| 48 | |
| 49 | // defaultCipherSuites is the ordered list of all the cipher |
| 50 | // suites we want to support by default, assuming AES-NI |
no outgoing calls
no test coverage detected