(id uint16)
| 651 | } |
| 652 | |
| 653 | func cipherSuiteTLS13ByID(id uint16) *cipherSuiteTLS13 { |
| 654 | for _, cipherSuite := range cipherSuitesTLS13 { |
| 655 | if cipherSuite.id == id { |
| 656 | return cipherSuite |
| 657 | } |
| 658 | } |
| 659 | return nil |
| 660 | } |
| 661 | |
| 662 | // A list of cipher suite IDs that are, or have been, implemented by this |
| 663 | // package. |
no outgoing calls
no test coverage detected
searching dependent graphs…