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
44
/// Easy-to-use key=value system with types.
pub use *;
/// Easy-to-use logging API
pub use Logger;
/// Basic cryptography functions
/// Easy-to-use functions to execute commands
/// Lightweight argument parser
/// Commonly-used structs
/// High-level functions to get information about a Chrome device
/// Send/receive vendor commands to/from the GSC (Google Security Chip) / TPM.
/*
Anything that requires a dependency should be locked behind a feature flag.
*/
/// Basic drawing functions for TUIs
/// A lightweight TPM2 library. Based on vboot's Tlcl library.
/*
#[cfg(feature = "diskutils")]
pub mod diskutils;
pub mod vpd;
*/