CipherSuiteNameSupported returns true if name is a supported cipher suite.
(name string)
| 26 | // CipherSuiteNameSupported returns true if name is |
| 27 | // a supported cipher suite. |
| 28 | func CipherSuiteNameSupported(name string) bool { |
| 29 | return CipherSuiteID(name) != 0 |
| 30 | } |
| 31 | |
| 32 | // CipherSuiteID returns the ID of the cipher suite associated with |
| 33 | // the given name, or 0 if the name is not recognized/supported. |
no test coverage detected