We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16b8a41 commit 2c30fceCopy full SHA for 2c30fce
src/libstd/hash.rs
@@ -15,8 +15,13 @@
15
*
16
* Consider this as a main "general-purpose" hash for all hashtables: it
17
* runs at good speed (competitive with spooky and city) and permits
18
- * cryptographically strong _keyed_ hashing. Key your hashtables from a
19
- * CPRNG like rand::rng.
+ * strong _keyed_ hashing. Key your hashtables from a strong RNG,
+ * such as rand::rng.
20
+ *
21
+ * Although the SipHash algorithm is considered to be cryptographically
22
+ * strong, this implementation has not been reviewed for such purposes.
23
+ * As such, all cryptographic uses of this implementation are strongly
24
+ * discouraged.
25
*/
26
27
#[allow(missing_doc)];
0 commit comments