utls/go.mod
hwh33 7344e34650
Implement certificate compression (#95)
Certificate compression is defined in RFC 8879:
https://datatracker.ietf.org/doc/html/rfc8879

This implementation is client-side only, for server certificates.

- Fixes #104.
2022-07-19 19:12:30 -06:00

10 lines
253 B
Modula-2

module github.com/refraction-networking/utls
go 1.16
require (
github.com/andybalholm/brotli v1.0.4
github.com/klauspost/compress v1.13.6
golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa
golang.org/x/net v0.0.0-20211111160137-58aab5ef257a
)