mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 04:27:36 +03:00
Fix statefulness
This commit is contained in:
parent
03d875d854
commit
2551de140c
3 changed files with 161 additions and 162 deletions
|
@ -127,8 +127,6 @@ func utlsMacSHA384(version uint16, key []byte) macFunction {
|
|||
|
||||
var utlsSupportedCipherSuites []*cipherSuite
|
||||
|
||||
var utlsIdToSpec map[ClientHelloID]ClientHelloSpec
|
||||
|
||||
func init() {
|
||||
utlsSupportedCipherSuites = append(cipherSuites, []*cipherSuite{
|
||||
{OLD_TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256, 32, 0, 12, ecdheRSAKA,
|
||||
|
@ -136,9 +134,6 @@ func init() {
|
|||
{OLD_TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256, 32, 0, 12, ecdheECDSAKA,
|
||||
suiteECDHE | suiteECDSA | suiteTLS12 | suiteDefaultOff, nil, nil, aeadChaCha20Poly1305},
|
||||
}...)
|
||||
|
||||
utlsIdToSpec = make(map[ClientHelloID]ClientHelloSpec)
|
||||
initParrots()
|
||||
}
|
||||
|
||||
// EnableWeakCiphers allows utls connections to continue in some cases, when weak cipher was chosen.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue