kvarn_async::prelude::compact_str::core::hash

Struct SipHasher

1.6.0 · source
pub struct SipHasher(/* private fields */);
👎Deprecated since 1.13.0: use std::hash::DefaultHasher instead
Expand description

An implementation of SipHash 2-4.

See: https://131002.net/siphash/

SipHash is a general-purpose hashing function: it runs at a good speed (competitive with Spooky and City) and permits strong keyed hashing. This lets you key your hash tables from a strong RNG, such as rand::os::OsRng.

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.

Implementations§

source§

impl SipHasher

1.0.0 (const: unstable) · source

pub fn new() -> SipHasher

👎Deprecated since 1.13.0: use std::hash::DefaultHasher instead

Creates a new SipHasher with the two initial keys set to 0.

1.0.0 (const: