Skip to content

Commit

Permalink
fix: incorrect firefox nss parrot ECH params (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaukas committed Dec 16, 2023
1 parent 2d6258a commit c4ba3ff
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions u_parrots.go
Expand Up @@ -1293,16 +1293,12 @@ func utlsIdToSpec(id ClientHelloID) (ClientHelloSpec, error) {
KdfId: dicttls.HKDF_SHA256,
AeadId: dicttls.AEAD_AES_128_GCM,
},
{
KdfId: dicttls.HKDF_SHA256,
AeadId: dicttls.AEAD_AES_256_GCM,
},
{
KdfId: dicttls.HKDF_SHA256,
AeadId: dicttls.AEAD_CHACHA20_POLY1305,
},
},
CandidatePayloadLens: []uint16{128, 223}, // +16: 144, 239
CandidatePayloadLens: []uint16{223}, // +16: 239
},
},
}, nil
Expand Down

0 comments on commit c4ba3ff

Please sign in to comment.