blazehash 0.2.5

Forensic file hasher — hashdeep for the modern era, BLAKE3 by default
Documentation
pub mod ads;
pub mod remote;
pub mod attack;
pub mod disclosure;
// The hash algorithms live in the lean `blazehash-core` engine. Re-export them
// here so existing `blazehash::algorithm::…` / `blazehash::fuzzy::…` paths (and
// the crate's own `crate::algorithm::…` references) keep resolving unchanged.
pub use blazehash_core::{algorithm, fuzzy};
pub mod digest_wrappers;
pub mod audit;
pub mod config;
pub mod cosign;
pub mod device;
pub mod folder_diff;
pub mod forensic_image;
pub mod format;
#[cfg(feature = "gpu")]
pub mod gpu;
pub mod hash;
#[cfg(feature = "docker")]
pub mod image;
pub mod manifest;
pub mod manifest_loader;
pub mod merkle;
#[cfg(feature = "hashdb")]
pub mod nsrl;
#[cfg(feature = "ots")]
pub mod ots;
pub mod output;
pub mod parallel_config;
pub mod piecewise;
pub mod progress;
pub mod resume;
#[cfg(feature = "pq")]
pub mod pq_signing;
pub mod signing;
#[cfg(feature = "tui")]
pub mod tui;
pub mod vt;
pub mod walk;
pub mod walk_filter;
#[cfg(target_os = "windows")]
pub mod walk_windows;
#[cfg(target_os = "windows")]
pub mod walk_windows_mft;
pub mod timeline;
pub mod watch;
#[cfg(feature = "yara")]
pub mod yara_scan;
#[cfg(feature = "qr")]
pub mod qr_label;