mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
Merge branch 'golang-tls-upstream', remove Android
I tested all fingerprints and confirmed that Chrome and Firefox are working as intended. Android fingerprints were grossly unpopular, which could a result of incorrect merge, but either way we'll remove them for now.
This commit is contained in:
commit
9656990081
114 changed files with 4011 additions and 4132 deletions
15
u_common.go
15
u_common.go
|
@ -42,19 +42,13 @@ const (
|
|||
|
||||
// newest signatures
|
||||
var (
|
||||
fakeRsaPssSha256 = SignatureAndHash{0x08, 0x04} // also declared in common.go as type SignatureScheme,
|
||||
fakeRsaPssSha384 = SignatureAndHash{0x08, 0x05} // but not used by default and not implemented
|
||||
fakeRsaPssSha512 = SignatureAndHash{0x08, 0x06}
|
||||
FakePKCS1WithSHA224 SignatureScheme = 0x0301
|
||||
FakeECDSAWithSHA224 SignatureScheme = 0x0303
|
||||
|
||||
// fakeEd25519 = SignatureAndHash{0x08, 0x07}
|
||||
// fakeEd448 = SignatureAndHash{0x08, 0x08}
|
||||
)
|
||||
|
||||
// IDs of hash functions in signatures
|
||||
const (
|
||||
disabledHashSHA512 uint8 = 6 // Supported, but disabled by default. Will be enabled, as needed
|
||||
fakeHashSHA224 uint8 = 3 // Supported, but we won't enable it: sounds esoteric and fishy
|
||||
)
|
||||
|
||||
type ClientHelloID struct {
|
||||
Browser string
|
||||
Version uint16
|
||||
|
@ -114,12 +108,9 @@ func utlsMacSHA384(version uint16, key []byte) macFunction {
|
|||
return tls10MAC{hmac.New(sha512.New384, key)}
|
||||
}
|
||||
|
||||
var utlsSupportedSignatureAlgorithms []signatureAndHash
|
||||
var utlsSupportedCipherSuites []*cipherSuite
|
||||
|
||||
func init() {
|
||||
utlsSupportedSignatureAlgorithms = append(supportedSignatureAlgorithms,
|
||||
[]signatureAndHash{{disabledHashSHA512, signatureRSA}, {disabledHashSHA512, signatureECDSA}}...)
|
||||
utlsSupportedCipherSuites = append(cipherSuites, []*cipherSuite{
|
||||
{OLD_TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256, 32, 0, 12, ecdheRSAKA,
|
||||
suiteECDHE | suiteTLS12 | suiteDefaultOff, nil, nil, aeadChaCha20Poly1305},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue