1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//! This crate provides the reference implementation of the forensic file format Zff.
//! Zff is a new file format for forensic images, as an alternative to EWF and AFF.
//! Zff is focused on speed and security. If you want to learn more about ZFF, visit [https://github.com/ph0llux/zff](https://github.com/ph0llux/zff).
// - modules
/// This module contains several structs and methods to create and read zff images in version 1.
/// This module contains several structs and methods to create, read and extend zff container in version 2.
/// This module contains all constants, used in this crate.
/// This module contains all header, could be found in the zff specification (header version 1 and header version 2).
/// This module contains all footer, could be found in the zff specification (footer version 1 and footer version 2).
// - re-exports
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
use *;
use *;
//
pub use *;
pub use *;
// - types
/// Result for std::result::Result<T, ZffError>.
pub type Result<T> = Result;