github.com/refraction-networking/utls.PubClientHandshakeState.State13 (field)

26 uses

	github.com/refraction-networking/utls (current package)
		u_conn.go#L122: 		uconn.HandshakeState.State13.KeyShareKeys = keySharePrivate.ToPublic()
		u_handshake_client.go#L441: 		if c.HandshakeState.State13.EarlySecret != nil && session != nil {
		u_handshake_client.go#L443: 			earlySecret = tls13.NewEarlySecretFromSecret(cipherSuite.hash.New, c.HandshakeState.State13.EarlySecret)
		u_handshake_client.go#L446: 		binderKey = c.HandshakeState.State13.BinderKey
		u_handshake_client.go#L542: 		if c.HandshakeState.State13.EarlySecret != nil && session.cipherSuite != 0 {
		u_handshake_client.go#L543: 			hs13.earlySecret = tls13.NewEarlySecretFromSecret(cipherSuiteTLS13ByID(session.cipherSuite).hash.New, c.HandshakeState.State13.EarlySecret)
		u_parrots.go#L2781: 		uconn.HandshakeState.State13.KeyShareKeys = clientKeySharePrivate.ToPublic()
		u_parrots.go#L2783: 		uconn.HandshakeState.State13.KeyShareKeys = &KeySharePrivateKeys{}
		u_parrots.go#L2906: 					uconn.HandshakeState.State13.KeyShareKeys.Mlkem = mlkemKey
		u_parrots.go#L2907: 					uconn.HandshakeState.State13.KeyShareKeys.MlkemEcdhe = ecdheKey
		u_parrots.go#L2918: 						uconn.HandshakeState.State13.KeyShareKeys.Ecdhe = ecdheKey
		u_public.go#L33: 	State13 TLS13OnlyState
		u_public.go#L93: 			keyShareKeys: chs.State13.private13KeyShareKeys(),
		u_public.go#L96: 			binderKey: chs.State13.BinderKey,
		u_public.go#L98: 			certReq:       chs.State13.CertReq.toPrivate(),
		u_public.go#L99: 			usingPSK:      chs.State13.UsingPSK,
		u_public.go#L100: 			sentDummyCCS:  chs.State13.SentDummyCCS,
		u_public.go#L101: 			suite:         chs.State13.Suite.toPrivate(),
		u_public.go#L102: 			transcript:    chs.State13.Transcript,
		u_public.go#L103: 			trafficSecret: chs.State13.TrafficSecret,
		u_public.go#L134: 			State13: tls13State,
		u_session_controller.go#L201: 		s.uconnRef.HandshakeState.State13.EarlySecret = pskCommon.EarlySecret
		u_session_controller.go#L206: 		uAssert(s.uconnRef.HandshakeState.Session == pskCommon.Session && sliceEq(s.uconnRef.HandshakeState.State13.EarlySecret, pskCommon.EarlySecret) &&
		u_session_controller.go#L211: 	s.uconnRef.HandshakeState.State13.BinderKey = pskCommon.BinderKey
		u_session_controller.go#L310: 		s.uconnRef.HandshakeState.State13.BinderKey = nil
		u_session_controller.go#L311: 		s.uconnRef.HandshakeState.State13.EarlySecret = nil