Skip to main content

cocoon_tpm_storage/
lib.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright 2025 SUSE LLC
3// Author: Nicolai Stange <nstange@suse.de>
4
5#![no_std]
6
7// Lifetimes are not always obvious at first sight, allow for making them explicit even if
8// redundant.
9#![allow(clippy::needless_lifetimes)]
10
11use cocoon_tpm_crypto as crypto;
12use cocoon_tpm_tpm2_interface as tpm2_interface;
13use cocoon_tpm_utils_async as utils_async;
14use cocoon_tpm_utils_common as utils_common;
15
16pub mod blkdev;
17pub mod fs;