#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

#1418 in Filesystem

Download history 15/week @ 2024-02-18 19/week @ 2024-02-25 13/week @ 2024-03-03 20/week @ 2024-03-10 2/week @ 2024-03-17 68/week @ 2024-03-31 2/week @ 2024-04-07

70 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