Skip to main content

ewf_forensic/
lib.rs

1#![cfg_attr(test, allow(clippy::unwrap_used, clippy::expect_used))]
2
3mod error;
4mod integrity;
5mod integrity_path;
6
7pub use error::EwfForensicError;
8pub use integrity::{
9    AnalysisProgress, ComputedHashes, EwfHeaderMetadata, EwfIntegrity, EwfIntegrityAnomaly,
10    Severity,
11};
12pub use integrity_path::EwfIntegrityPath;