mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
Revert "Remove appendToGlobalCipherSuites"
This reverts commit 0af497570e
.
This commit is contained in:
parent
ab61409e7d
commit
eb3c8be9a1
3 changed files with 28 additions and 0 deletions
|
@ -210,9 +210,12 @@ func TestUTLSHandshakeClientParrotAndroid_5_1(t *testing.T) {
|
|||
|
||||
// As this package sometimes has to modify global vars cipherSuites and supportedSignatureAlgorithms,
|
||||
// we'll back them up and restore after running the tests.
|
||||
cipherSuitesBackup := make([]*cipherSuite, len(cipherSuites))
|
||||
supportedSignatureAlgorithmsBackup := make([]signatureAndHash, len(supportedSignatureAlgorithms))
|
||||
copy(cipherSuitesBackup, cipherSuites)
|
||||
copy(supportedSignatureAlgorithmsBackup, supportedSignatureAlgorithms)
|
||||
defer func() {
|
||||
cipherSuites = cipherSuitesBackup
|
||||
supportedSignatureAlgorithms = supportedSignatureAlgorithmsBackup
|
||||
}()
|
||||
|
||||
|
@ -235,9 +238,12 @@ func TestUTLSHandshakeClientParrotAndroid_6_0(t *testing.T) {
|
|||
|
||||
// As this package sometimes has to modify global vars cipherSuites and supportedSignatureAlgorithms,
|
||||
// we'll back them up and restore after running the tests.
|
||||
cipherSuitesBackup := make([]*cipherSuite, len(cipherSuites))
|
||||
supportedSignatureAlgorithmsBackup := make([]signatureAndHash, len(supportedSignatureAlgorithms))
|
||||
copy(cipherSuitesBackup, cipherSuites)
|
||||
copy(supportedSignatureAlgorithmsBackup, supportedSignatureAlgorithms)
|
||||
defer func() {
|
||||
cipherSuites = cipherSuitesBackup
|
||||
supportedSignatureAlgorithms = supportedSignatureAlgorithmsBackup
|
||||
}()
|
||||
|
||||
|
@ -260,9 +266,12 @@ func TestUTLSHandshakeClientParrotChrome_58(t *testing.T) {
|
|||
|
||||
// As this package sometimes has to modify global vars cipherSuites and supportedSignatureAlgorithms,
|
||||
// we'll back them up and restore after running the tests.
|
||||
cipherSuitesBackup := make([]*cipherSuite, len(cipherSuites))
|
||||
supportedSignatureAlgorithmsBackup := make([]signatureAndHash, len(supportedSignatureAlgorithms))
|
||||
copy(cipherSuitesBackup, cipherSuites)
|
||||
copy(supportedSignatureAlgorithmsBackup, supportedSignatureAlgorithms)
|
||||
defer func() {
|
||||
cipherSuites = cipherSuitesBackup
|
||||
supportedSignatureAlgorithms = supportedSignatureAlgorithmsBackup
|
||||
}()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue