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
11
u_common.go
11
u_common.go
|
@ -99,6 +99,17 @@ var (
|
|||
HelloAndroid_5_1_Browser ClientHelloID = ClientHelloID{helloAndroid, 22}
|
||||
)
|
||||
|
||||
// Appends newCipher to cipherSuites, if not there already
|
||||
// Used to add old cipher ids
|
||||
func appendToGlobalCipherSuites(newCipher *cipherSuite) {
|
||||
for _, c := range cipherSuites {
|
||||
if c.id == newCipher.id {
|
||||
return
|
||||
}
|
||||
}
|
||||
cipherSuites = append(cipherSuites, newCipher)
|
||||
}
|
||||
|
||||
// Appends {hash, sig} to supportedSignatureAlgorithms, if not there already
|
||||
// Used to enable already supported but disabled signatures
|
||||
func appendToGlobalSigAlgs(hash uint8, sig uint8) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue