ewf-forensic 0.7.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
13
14
#![cfg_attr(test, allow(clippy::unwrap_used, clippy::expect_used))]

mod error;
mod integrity;
mod integrity_path;
mod recover;

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