Use SHAKE instead of chacha20 for PRNG stream (#37)

See: https://github.com/refraction-networking/utls/issues/36
This commit is contained in:
Rod Hynes 2019-09-09 15:56:03 -04:00 committed by sergeyfrolov
parent cc2996c818
commit dbda71b12f
2 changed files with 24 additions and 61 deletions

View file

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