Source File
hpke_kdf_identifiers.go
Belonging Package
github.com/refraction-networking/utls/dicttls
package dicttls// source: https://www.iana.org/assignments/hpke/hpke.xhtml// last updated: December 2023const (HKDF_SHA256 uint16 = 0x0001HKDF_SHA384 uint16 = 0x0002HKDF_SHA512 uint16 = 0x0003)var DictKDFIdentifierValueIndexed = map[uint16]string{0x0000: "Reserved", // RFC 91800x0001: "HKDF_SHA256",0x0002: "HKDF_SHA384",0x0003: "HKDF_SHA512",}var DictKDFIdentifierNameIndexed = map[string]uint16{"Reserved": 0x0000, // RFC 9180"HKDF_SHA256": 0x0001,"HKDF_SHA384": 0x0002,"HKDF_SHA512": 0x0003,}
![]() |
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. |