libcros 0.6.5

A Rust library that provides easy-to-use functions for interacting with a Chrome device
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(feature = "tpm1_2")]
pub mod tpm12;
#[cfg(all(feature = "tpm1_2", not(feature = "tpm2_0")))]
pub use tpm12::*;

#[cfg(feature = "tpm2_0")]
pub mod tpm20;
#[cfg(feature = "tpm2_0")]
pub use tpm20::*;

#[cfg(all(not(feature = "tpm1_2"), not(feature = "tpm2_0")))]
pub mod stubs;
#[cfg(all(not(feature = "tpm1_2"), not(feature = "tpm2_0")))]
pub use stubs::*;