(id uint16)
| 635 | } |
| 636 | |
| 637 | func cipherSuiteTLS13ByID(id uint16) *cipherSuiteTLS13 { |
| 638 | for _, cipherSuite := range cipherSuitesTLS13 { |
| 639 | if cipherSuite.id == id { |
| 640 | return cipherSuite |
| 641 | } |
| 642 | } |
| 643 | return nil |
| 644 | } |
| 645 | |
| 646 | // A list of cipher suite IDs that are, or have been, implemented by this |
| 647 | // package. |
no outgoing calls
no test coverage detected
searching dependent graphs…