crypto/tls.clientHelloMsg.pskIdentities (field)

14 uses

	crypto/tls (current package)
		handshake_client.go#L333: 	hello.pskIdentities = []pskIdentity{identity}
		handshake_client_tls13.go#L237: 	if len(hs.hello.pskIdentities) > 0 {
		handshake_client_tls13.go#L245: 			hs.hello.pskIdentities[0].obfuscatedTicketAge = ticketAge + hs.session.ageAdd
		handshake_client_tls13.go#L256: 			hs.hello.pskIdentities = nil
		handshake_client_tls13.go#L316: 	if int(hs.serverHello.selectedIdentity) >= len(hs.hello.pskIdentities) {
		handshake_client_tls13.go#L321: 	if len(hs.hello.pskIdentities) != 1 || hs.session == nil {
		handshake_messages.go#L93: 	pskIdentities                    []pskIdentity
		handshake_messages.go#L269: 			if len(m.pskIdentities) > 0 { // pre_shared_key must be the last extension
		handshake_messages.go#L274: 						for _, psk := range m.pskIdentities {
		handshake_messages.go#L565: 				m.pskIdentities = append(m.pskIdentities, psk)
		handshake_server_tls13.go#L257: 	if len(hs.clientHello.pskIdentities) != len(hs.clientHello.pskBinders) {
		handshake_server_tls13.go#L261: 	if len(hs.clientHello.pskIdentities) == 0 {
		handshake_server_tls13.go#L265: 	for i, identity := range hs.clientHello.pskIdentities {