mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
parrotChrome_58: fix panic
This commit is contained in:
parent
e66d491f21
commit
e96789aa6a
1 changed files with 5 additions and 4 deletions
|
@ -325,6 +325,11 @@ func (uconn *UConn) parrotChrome_58() error {
|
|||
hello := uconn.HandshakeState.Hello
|
||||
session := uconn.HandshakeState.Session
|
||||
|
||||
err := uconn.fillClientHelloHeader()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
hello.CipherSuites = []uint16{
|
||||
GetBoringGREASEValue(hello.Random, ssl_grease_cipher),
|
||||
TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
|
||||
|
@ -341,10 +346,6 @@ func (uconn *UConn) parrotChrome_58() error {
|
|||
TLS_RSA_WITH_AES_256_CBC_SHA,
|
||||
TLS_RSA_WITH_3DES_EDE_CBC_SHA,
|
||||
}
|
||||
err := uconn.fillClientHelloHeader()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
grease_ext1 := GetBoringGREASEValue(hello.Random, ssl_grease_extension1)
|
||||
grease_ext2 := GetBoringGREASEValue(hello.Random, ssl_grease_extension2)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue