mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 04:27: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
|
@ -36,6 +36,7 @@ var tests = []interface{}{
|
|||
&newSessionTicketMsgTLS13{},
|
||||
&certificateRequestMsgTLS13{},
|
||||
&certificateMsgTLS13{},
|
||||
&compressedCertificateMsg{}, // [UTLS]
|
||||
}
|
||||
|
||||
func TestMarshalUnmarshal(t *testing.T) {
|
||||
|
@ -420,6 +421,15 @@ func (*certificateMsgTLS13) Generate(rand *rand.Rand, size int) reflect.Value {
|
|||
return reflect.ValueOf(m)
|
||||
}
|
||||
|
||||
// [UTLS]
|
||||
func (*compressedCertificateMsg) Generate(rand *rand.Rand, size int) reflect.Value {
|
||||
m := &compressedCertificateMsg{}
|
||||
m.algorithm = uint16(rand.Intn(2 << 15))
|
||||
m.uncompressedLength = uint32(rand.Intn(2 << 23))
|
||||
m.compressedCertificateMessage = randomBytes(rand.Intn(500)+1, rand)
|
||||
return reflect.ValueOf(m)
|
||||
}
|
||||
|
||||
func TestRejectEmptySCTList(t *testing.T) {
|
||||
// RFC 6962, Section 3.3.1 specifies that empty SCT lists are invalid.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue