RustCrypto: Skein
Implementation of the Skein family of cryptographic hash algorithms.
There are 3 standard versions of the Skein hash function: Skein256, Skein512, Skein1024.
Output size of the Skein hash functions is arbitrary, so it has to be fixed using additional type parameter.
Examples
use hex;
use ;
let mut hasher = new;
hasher.update;
hasher.update;
let hash = hasher.finalize;
assert_eq!;
See the digest crate docs for additional examples.
License
The crate is licensed under either of:
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.