We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
hash::SipHasher
1 parent e36c7da commit 054196dCopy full SHA for 054196d
src/libcore/hash/sip.rs
@@ -27,10 +27,9 @@ use super::Hasher;
27
/// hashing. This lets you key your hashtables from a strong RNG, such
28
/// as [`rand::Rng`](https://doc.rust-lang.org/rand/rand/trait.Rng.html).
29
///
30
-/// Although the SipHash algorithm is considered to be cryptographically
31
-/// strong, this implementation has not been reviewed for such purposes.
32
-/// As such, all cryptographic uses of this implementation are _strongly
33
-/// discouraged_.
+/// Although the SipHash algorithm is considered to be generally strong,
+/// it is not intended for cryptographic purposes. As such, all
+/// cryptographic uses of this implementation are _strongly discouraged_.
34
#[stable(feature = "rust1", since = "1.0.0")]
35
pub struct SipHasher {
36
k0: u64,
0 commit comments