#hash #folder #file #file-hashing

file-hashing

Library for hashing files and folders

3 releases

0.1.2 Dec 22, 2022
0.1.1 Nov 5, 2022
0.1.0 Nov 4, 2022

#1421 in Filesystem

Download history 1/week @ 2024-04-22 4/week @ 2024-05-13 12/week @ 2024-05-20 7/week @ 2024-05-27 85/week @ 2024-06-03 41/week @ 2024-06-10 129/week @ 2024-06-17 145/week @ 2024-06-24 103/week @ 2024-07-01 148/week @ 2024-07-08 200/week @ 2024-07-15 136/week @ 2024-07-22 166/week @ 2024-07-29

652 downloads per month
Used in cli-sandbox

MIT license

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