Source File
hpke_aead_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 (AEAD_AES_128_GCM uint16 = 0x0001 // NIST Special Publication 800-38DAEAD_AES_256_GCM uint16 = 0x0002 // NIST Special Publication 800-38DAEAD_CHACHA20_POLY1305 uint16 = 0x0003 // RFC 8439AEAD_EXPORT_ONLY uint16 = 0xFFFF // RFC 9180)var DictAEADIdentifierValueIndexed = map[uint16]string{0x0000: "Reserved", // RFC 91800x0001: "AES-128-GCM",0x0002: "AES-256-GCM",0x0003: "ChaCha20Poly1305",0xFFFF: "Export-only", // RFC 9180}
![]() |
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. |