3 releases
0.1.2 | Dec 22, 2022 |
---|---|
0.1.1 | Nov 5, 2022 |
0.1.0 | Nov 4, 2022 |
#1421 in Filesystem
652 downloads per month
Used in cli-sandbox
16KB
251 lines
file-hashing
This crate will help you easily get hash from files or folders
Example
let path = PathBuf::from("/home/gladi/test-hashing.txt");
let mut hash = Blake2s256::new();
let result = get_hash_file(&path, &mut hash).unwrap();
assert_eq!(result.len(), 64); // Blake2s256 len == 64
P.S. If the examples from the documentation do not work, then you need to look at the unit tests
Motivation
Each time we write our own function to get the hash from a file or folder. We repeat ourselves and violate the DRY principle. With this crate you can save a couple of hours
License: MIT
lib.rs
:
This crate will help you easily get hash from files or folders
Example
use std::path::PathBuf;
use blake2::{Blake2s256, Digest};
use file_hashing::get_hash_file;
let path = PathBuf::from("/home/gladi/test-hashing.txt");
let mut hash = Blake2s256::new();
let result = get_hash_file(&path, &mut hash).unwrap();
assert_eq!(result.len(), 64); // Blake2s256 len == 64
P.S. If the examples from the documentation do not work, then you need to look at the unit tests
Dependencies
~2–11MB
~127K SLoC