uefi_raw/protocol/tcg.rs
1// SPDX-License-Identifier: MIT OR Apache-2.0
2
3//! [TCG] (Trusted Computing Group) protocols.
4//!
5//! These protocols provide access to the [TPM][tpm] (Trusted Platform Module).
6//!
7//! There are two versions of the protocol. The original protocol is in
8//! the [`v1`] module. It is used with TPM 1.1 and 1.2 devices. The
9//! newer protocol in the [`v2`] module is generally provided for TPM
10//! 2.0 devices, although the spec indicates it can be used for older
11//! TPM versions as well.
12//!
13//! [TCG]: https://trustedcomputinggroup.org/
14//! [TPM]: https://en.wikipedia.org/wiki/Trusted_Platform_Module
15
16pub mod v1;
17pub mod v2;
18
19mod enums;
20pub use enums::*;