ewf-forensic 0.6.0

Forensic integrity analysis and repair for EWF (Expert Witness Format / E01) images
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(test, allow(clippy::unwrap_used, clippy::expect_used))]

mod error;
mod integrity;
mod integrity_path;

pub use error::EwfForensicError;
pub use integrity::{
    AnalysisProgress, ComputedHashes, EwfHeaderMetadata, EwfIntegrity, EwfIntegrityAnomaly,
    Severity,
};
pub use integrity_path::EwfIntegrityPath;