mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 03:57:36 +03:00
Use SHAKE instead of chacha20 for PRNG stream (#37)
See: https://github.com/refraction-networking/utls/issues/36
This commit is contained in:
parent
cc2996c818
commit
dbda71b12f
2 changed files with 24 additions and 61 deletions
|
@ -625,7 +625,10 @@ func (uconn *UConn) generateRandomizedSpec() (ClientHelloSpec, error) {
|
|||
uconn.ClientHelloID.Seed = seed
|
||||
}
|
||||
|
||||
r := newPRNGWithSeed(uconn.ClientHelloID.Seed)
|
||||
r, err := newPRNGWithSeed(uconn.ClientHelloID.Seed)
|
||||
if err != nil {
|
||||
return p, err
|
||||
}
|
||||
|
||||
id := uconn.ClientHelloID
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue