pub trait EndianIndependentAlgorithm { }
Expand description

Marker trait for hashers that, given the same byte stream, calculates the same hash on hosts of different endiannesses.

Implementors§

source§

impl EndianIndependentAlgorithm for Xxh64

Available on crate feature xxh64 only.
source§

impl<T, H: Hasher<T> + EndianIndependentAlgorithm> EndianIndependentAlgorithm for HasherBe<T, H>

source§

impl<T, H: Hasher<T> + EndianIndependentAlgorithm> EndianIndependentAlgorithm for HasherLe<T, H>

source§

impl<T: Type, V: Version> EndianIndependentAlgorithm for Fnv<T, V>

Available on crate feature fnv only.