This is a Rust implementation of various cryptographic hash functions. The following algorithms are currently supported:
Here's an example of how to use the sha256
hash function:
```rust use hashes::sha2::sha256::hash;
fn main() { asserteq!( hash("abc".asbytes()).into_words(), [ 0xba7816bf, 0x8f01cfea, 0x414140de, 0x5dae2223, 0xb00361a3, 0x96177a9c, 0xb410ff61, 0xf20015ad ] ); } ```
This project is dual-licensed under the Apache License 2.0 and the MIT License. You may choose either license to use this software.