1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//! Hashing.
//!
//! Sarkara use [`BLAKE2b`](https://blake2.net/),
//! it based on [`ChaCha`](https://en.wikipedia.org/wiki/ChaCha_(cipher)) stream cipher,
//! have good performance and security.

mod blake2;

pub use self::blake2::Blake2b;


/// `Hash` trait.
pub trait Hash: Default {
    /// Digest length.
    fn digest_length() -> usize;

    /// Calculate hash.
    fn hash<D>(&self, data: &[u8]) -> D where D: From<Vec<u8>>;
}

/// `GenericHash` trait,
/// allow set output length and key.
pub trait GenericHash: Default + Hash {
    /// Set output length.
    fn with_size(&mut self, nn: usize) -> &mut Self;
    /// Set hash key.
    fn with_key(&mut self, key: &[u8]) -> &mut Self;
}