zff 2.0.1

This crate is a library to interact with zff, a file format for forensic images.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// - modules
/// This module contains the version 1 of all zff footer.
pub mod version1;
/// This module contains the version 2 of all zff footer.
pub mod version2;

// - re-exports -- this section contains the footer of the current zff version.
pub use version2::file_footer::*;
pub use version2::main_footer::*;
pub use version2::object_footer::*;
pub use version2::segment_footer::*;