Source File
ec_point_formats.go
Belonging Package
github.com/refraction-networking/utls/dicttls
package dicttls// source: https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-9// last updated: March 2023const (ECPoint_uncompressed uint8 = 0ECPoint_ansiX962_compressed_prime uint8 = 1ECPoint_ansiX962_compressed_char2 uint8 = 2)var DictECPointFormatValueIndexed = map[uint8]string{0: "uncompressed",1: "ansiX962_compressed_prime",2: "ansiX962_compressed_char2",}var DictECPointFormatNameIndexed = map[string]uint8{"uncompressed": 0,"ansiX962_compressed_prime": 1,"ansiX962_compressed_char2": 2,}
![]() |
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. |