blake2 0.8.0

BLAKE2 hash functions
Documentation
1
2
3
4
5
6
7
8
use digest::generic_array::typenum::U64;
use consts::BLAKE2B_IV;

blake2_impl!(VarBlake2b, Blake2b, u64, u64x4, U64,
    32, 24, 16, 63, BLAKE2B_IV,
    "Blake2b instance with a variable output.",
    "Blake2b instance with a fixed output.",
);