Name Description Size
aes_hash.rs 13149
convert.rs 4413
fallback_hash.rs 12128
hash_map.rs 14078
hash_quality_test.rs 18219
hash_set.rs 9372
lib.rs AHash is a high performance keyed hash function. It quickly provides a high quality hash where the result is not predictable without knowing the Key. AHash works with `HashMap` to hash keys, but without allowing for the possibility that an malicious user can induce a collision. # How aHash works When it is available aHash uses the hardware AES instructions to provide a keyed hash function. When it is not, aHash falls back on a slightly slower alternative algorithm. Because aHash does not have a fixed standard for its output, it is able to improve over time. But this also means that different computers or computers using different versions of ahash may observe different hash values for the same input. 12290
operations.rs 12402
random_state.rs 18534
specialize.rs 7158