Source File
certificate_compression_algorithm_ids.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-certificate-compression-algorithm-ids// last updated: March 2023const (CertCompAlg_zlib uint16 = 1CertCompAlg_brotli uint16 = 2CertCompAlg_zstd uint16 = 3)var DictCertificateCompressionAlgorithmValueIndexed = map[uint16]string{1: "zlib",2: "brotli",3: "zstd",}var DictCertificateCompressionAlgorithmNameIndexed = map[string]uint16{"zlib": 1,"brotli": 2,"zstd": 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. |