Source File
certificte_types.go
Belonging Package
github.com/refraction-networking/utls/dicttls
package dicttls// source: https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml#tls-extensiontype-values-3// last updated: March 2023const (CertType_X509 uint8 = 0CertType_OpenPGP uint8 = 1CertType_Raw_Public_Key uint8 = 2CertType_1609Dot2 uint8 = 3)var DictCertificateTypeValueIndexed = map[uint8]string{0: "X509",1: "OpenPGP",2: "Raw Public Key",3: "1609Dot2",}var DictCertificateTypeNameIndexed = map[string]uint8{"X509": 0,"OpenPGP": 1,"Raw Public Key": 2,"1609Dot2": 3,}
![]() |
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. |