streamdigest 0.1.0

Async file hashing and digest calculation with progress reporting
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! # streamdigest
//! 
//! Async file hashing and digest calculation with progress reporting.
//! 
//! This crate provides efficient streaming hash calculation for files and data streams
//! with support for SHA256, SHA512, SHA1, progress callbacks, and O_DIRECT I/O on Unix.

pub mod hasher;

#[cfg(test)]
mod test_hasher;

pub use hasher::*;