crypto-hash
crypto-hash copied to clipboard
A Rust wrapper for OS-level cryptographic hash functions
Results
11
crypto-hash issues
Sort by
recently updated
recently updated
newest added
Hello, on Windows a call to `write_all` after `finish` causes panic. Example: ```rust use crypto_hash::{Algorithm, Hasher}; use std::io::Write; fn main() { let mut hasher = Hasher::new(Algorithm::MD5); let message1 = b"Hello";...