Pure Rust implementation of the Kupyna cryptographic hash function defined under DSTU 7564:2014.
use hex_literal::hex;
use kupyna::{Digest, Kupyna256};
let mut hasher = Kupyna256::default();
hasher.update(b"my message");
let hash = hasher.finalize();
assert_eq!(hash, hex!("538e2e238142df05e954702aa75d6942cebe30d44bd514df365d13bdcb6b1458"));
// Hex-encode hash using https://docs.rs/base16ct
let hex_hash = base16ct::lower::encode_string(&hash);
assert_eq!(hex_hash, "538e2e238142df05e954702aa75d6942cebe30d44bd514df365d13bdcb6b1458");
Also, see the examples section in the RustCrypto/hashes readme.
The crate is licensed under either of:
at your option.
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.