zff 2.0.1

This crate is a library to interact with zff, a file format for forensic images.
Documentation
//! This module contains all header (mostly sub headers of the [MainHeader]), which are specified in the zff standard version 1.

// - modules
pub(crate) mod main_header;
pub(crate) mod pbe_header;
pub(crate) mod encryption_header;
pub(crate) mod description_header;
pub(crate) mod segment_header;
pub(crate) mod compression_header;
pub(crate) mod chunk_header;
pub(crate) mod hash_header;

// - re-exports
pub use main_header::*;
pub use pbe_header::*;
pub use encryption_header::*;
pub use description_header::*;
pub use segment_header::*;
pub use compression_header::*;
pub use chunk_header::*;
pub use hash_header::*;