#hash #folder #file

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

#1705 in Filesystem

Download history 47/week @ 2024-11-13 110/week @ 2024-11-20 48/week @ 2024-11-27 49/week @ 2024-12-04 205/week @ 2024-12-11 68/week @ 2024-12-18 47/week @ 2024-12-25 36/week @ 2025-01-01 144/week @ 2025-01-08 89/week @ 2025-01-15 130/week @ 2025-01-22 138/week @ 2025-01-29 75/week @ 2025-02-05 63/week @ 2025-02-12 110/week @ 2025-02-19 130/week @ 2025-02-26

387 downloads per month
Used in 2 crates

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
~150K SLoC