reqwless requests a u64 from the user and uses it to seed a ChaCha8Rng for TLS.
|
let mut rng = ChaCha8Rng::seed_from_u64(tls.seed); |
64 bits is not enough entropy to make TLS secure. The seed should be larger, or ideally the user would pass the RNG directly.
reqwlessrequests au64from the user and uses it to seed aChaCha8Rngfor TLS.reqwless/src/client.rs
Line 157 in 311060f
64 bits is not enough entropy to make TLS secure. The seed should be larger, or ideally the user would pass the RNG directly.