mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 12:37:35 +03:00
Support fake extension: EncryptThenMAC (22)
When AllowBluntMimicry is set to true, support fake extension: EncryptThenMAC (22) https://datatracker.ietf.org/doc/html/rfc7366
This commit is contained in:
parent
d5cdf5dbe1
commit
1af5ecda3e
2 changed files with 8 additions and 0 deletions
|
@ -37,6 +37,7 @@ const (
|
|||
fakeOldExtensionChannelID uint16 = 30031 // not IANA assigned
|
||||
fakeExtensionChannelID uint16 = 30032 // not IANA assigned
|
||||
fakeExtensionDelegatedCredentials uint16 = 34
|
||||
fakeExtensionEncryptThenMAC uint16 = 22
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -324,6 +324,13 @@ func (f *Fingerprinter) FingerprintClientHello(data []byte) (*ClientHelloSpec, e
|
|||
case fakeOldExtensionChannelID:
|
||||
clientHelloSpec.Extensions = append(clientHelloSpec.Extensions, &FakeChannelIDExtension{true})
|
||||
|
||||
case fakeExtensionEncryptThenMAC:
|
||||
if f.AllowBluntMimicry {
|
||||
clientHelloSpec.Extensions = append(clientHelloSpec.Extensions, &GenericExtension{extension, extData})
|
||||
} else {
|
||||
return nil, errors.New("unsupported extension Encrypt-then-MAC")
|
||||
}
|
||||
|
||||
case fakeExtensionTokenBinding:
|
||||
var tokenBindingExt FakeTokenBindingExtension
|
||||
var keyParameters cryptobyte.String
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue