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;
6mod recover;
7
8pub use error::EwfForensicError;
9pub use integrity::{
10    AnalysisProgress, ComputedHashes, EwfHeaderMetadata, EwfIntegrity, EwfIntegrityAnomaly,
11    Severity,
12};
13pub use integrity_path::EwfIntegrityPath;
14pub use recover::{EwfRecover, RecoveryReport};