mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-02 11:37:36 +03:00
* dicttls: update ECH-related entries * wip: GREASE ECH extension * new: GREASE ECH extension * fix: GREASE ECH Read must succeed with io.EOF * new: GREASE ECH multiple payload len * new: parse ECH in EncryptedExtensions * fix: ECHConfig Length always 0 * new: GREASE ECH parrots * new: (*Config).ECHConfigs Add (*Config).ECHConfigs for future full ECH extension. * new: add GREASE ECH example Add an incomplete example of using GREASE ECH extension (Chrome 120 parrot). * fix: invalid httpGetOverConn call fix a problem in old example where httpGetOverConn was called with uTlsConn.HandshakeState.ServerHello.AlpnProtocol, which will not be populated in case TLS 1.3 is used. * new: possible InnerClientHello length
20 lines
416 B
Modula-2
20 lines
416 B
Modula-2
module github.com/refraction-networking/utls
|
|
|
|
go 1.20
|
|
|
|
retract (
|
|
v1.4.1 // #218
|
|
v1.4.0 // #218 panic on saveSessionTicket
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.0.5
|
|
github.com/cloudflare/circl v1.3.6
|
|
github.com/klauspost/compress v1.16.7
|
|
github.com/quic-go/quic-go v0.37.4
|
|
golang.org/x/crypto v0.14.0
|
|
golang.org/x/net v0.17.0
|
|
golang.org/x/sys v0.13.0
|
|
)
|
|
|
|
require golang.org/x/text v0.13.0 // indirect
|