Source File
psk_key_exchange_mode.go
Belonging Package
github.com/refraction-networking/utls/dicttls
package dicttls// source: https://www.iana.org/assignments/tls-parameters/tls-pskkeyexchangemode.csv// last updated: March 2023const (PSKKeyExchangeMode_psk_ke uint8 = 0PSKKeyExchangeMode_psk_dhe_ke uint8 = 1)var DictPSKKeyExchangeModeValueIndexed = map[uint8]string{0: "psk_ke",1: "psk_dhe_ke",}var DictPSKKeyExchangeModeNameIndexed = map[string]uint8{"psk_ke": 0,"psk_dhe_ke": 1,}
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |