type crypto/tls.cipherSuiteTLS13

14 uses

	crypto/tls (current package)
		cipher_suites.go#L216: type cipherSuiteTLS13 struct {
		cipher_suites.go#L223: var cipherSuitesTLS13 = []*cipherSuiteTLS13{
		cipher_suites.go#L456: func mutualCipherSuiteTLS13(have []uint16, want uint16) *cipherSuiteTLS13 {
		cipher_suites.go#L465: func cipherSuiteTLS13ByID(id uint16) *cipherSuiteTLS13 {
		conn.go#L214: func (hc *halfConn) setTrafficSecret(suite *cipherSuiteTLS13, secret []byte) {
		handshake_client_tls13.go#L31: 	suite         *cipherSuiteTLS13
		handshake_server_tls13.go#L30: 	suite           *cipherSuiteTLS13
		key_schedule.go#L35: func (c *cipherSuiteTLS13) expandLabel(secret []byte, label string, context []byte, length int) []byte {
		key_schedule.go#L54: func (c *cipherSuiteTLS13) deriveSecret(secret []byte, label string, transcript hash.Hash) []byte {
		key_schedule.go#L62: func (c *cipherSuiteTLS13) extract(newSecret, currentSecret []byte) []byte {
		key_schedule.go#L71: func (c *cipherSuiteTLS13) nextTrafficSecret(trafficSecret []byte) []byte {
		key_schedule.go#L76: func (c *cipherSuiteTLS13) trafficKey(trafficSecret []byte) (key, iv []byte) {
		key_schedule.go#L85: func (c *cipherSuiteTLS13) finishedHash(baseKey []byte, transcript hash.Hash) []byte {
		key_schedule.go#L94: func (c *cipherSuiteTLS13) exportKeyingMaterial(masterSecret []byte, transcript hash.Hash) func(string, []byte, int) ([]byte, error) {