MCPcopy Create free account
hub / github.com/XTLS/Go / cipherSuiteTLS13ByID

Function cipherSuiteTLS13ByID

cipher_suites.go:637–644  ·  view source on GitHub ↗
(id uint16)

Source from the content-addressed store, hash-verified

635}
636
637func 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.

Callers 8

handleKeyUpdateMethod · 0.85
loadSessionMethod · 0.85
processServerHelloMethod · 0.85
checkForResumptionMethod · 0.85
aesgcmPreferredFunction · 0.85
mutualCipherSuiteTLS13Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…