mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 03:57:36 +03:00
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.
This commit is contained in:
parent
9d36ce3658
commit
7344e34650
11 changed files with 276 additions and 50 deletions
|
@ -32,6 +32,11 @@ type UConn struct {
|
|||
greaseSeed [ssl_grease_last_index]uint16
|
||||
|
||||
omitSNIExtension bool
|
||||
|
||||
// certCompressionAlgs represents the set of advertised certificate compression
|
||||
// algorithms, as specified in the ClientHello. This is only relevant client-side, for the
|
||||
// server certificate. All other forms of certificate compression are unsupported.
|
||||
certCompressionAlgs []CertCompressionAlgo
|
||||
}
|
||||
|
||||
// UClient returns a new uTLS client, with behavior depending on clientHelloID.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue