parrotChrome_58: fix panic

This commit is contained in:
Sergey Frolov 2017-08-09 13:59:43 -04:00
parent e66d491f21
commit e96789aa6a

View file

@ -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)