Skip to content

Commit 121225f

Browse files
committed
HashMap: add info to docs about random seed quality
The random functions that HashMap use make no guarantees about the quality of random data so this documents that to the user so that they are aware. This was brought about by the change to the Linux random code to not block until the urandom pool was initialized to avoid users of crates that internally use HashMap being caught unaware and having their application block until the urandom pool is initialized. Signed-off-by: Doug Goldstein <[email protected]>
1 parent f875dac commit 121225f

File tree

1 file changed

+4
-2
lines changed
  • src/libstd/collections/hash

1 file changed

+4
-2
lines changed

src/libstd/collections/hash/map.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,10 @@ fn test_resize_policy() {
202202
/// The hashes are all keyed by the thread-local random number generator
203203
/// on creation by default. This means that the ordering of the keys is
204204
/// randomized, but makes the tables more resistant to
205-
/// denial-of-service attacks (Hash DoS). This behavior can be
206-
/// overridden with one of the constructors.
205+
/// denial-of-service attacks (Hash DoS). No guarantees are made to the
206+
/// quality of the random data. The implementation uses the best available
207+
/// random data from your platform at the time of creation. This behavior
208+
/// can be overridden with one of the constructors.
207209
///
208210
/// It is required that the keys implement the `Eq` and `Hash` traits, although
209211
/// this can frequently be achieved by using `#[derive(PartialEq, Eq, Hash)]`.

0 commit comments

Comments
 (0)