mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
Add Chrome 83 fingerprint (#46)
Add Chrome 83 fingerprint Removed features vs Chrome 72: 3DES cipher suite (https://tlsfingerprint.io/find/cipher/000a) sha1 signature algorithm (rsa_pkcs1_sha1 (0x0201))
This commit is contained in:
parent
43c36d3c1f
commit
641a3b15c7
2 changed files with 74 additions and 1 deletions
|
@ -145,11 +145,12 @@ var (
|
|||
HelloFirefox_63 = ClientHelloID{helloFirefox, "63", nil}
|
||||
HelloFirefox_65 = ClientHelloID{helloFirefox, "65", nil}
|
||||
|
||||
HelloChrome_Auto = HelloChrome_72
|
||||
HelloChrome_Auto = HelloChrome_83
|
||||
HelloChrome_58 = ClientHelloID{helloChrome, "58", nil}
|
||||
HelloChrome_62 = ClientHelloID{helloChrome, "62", nil}
|
||||
HelloChrome_70 = ClientHelloID{helloChrome, "70", nil}
|
||||
HelloChrome_72 = ClientHelloID{helloChrome, "72", nil}
|
||||
HelloChrome_83 = ClientHelloID{helloChrome, "83", nil}
|
||||
|
||||
HelloIOS_Auto = HelloIOS_12_1
|
||||
HelloIOS_11_1 = ClientHelloID{helloIOS, "111", nil} // legacy "111" means 11.1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue