aws_nitro_enclaves_nsm_api/
lib.rs

1// Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2// SPDX-License-Identifier: Apache-2.0
3
4//! AWS Nitro Secure Module API
5//!
6//! This is the library that provides the API for the Nitro Secure Module used in AWS Nitro
7//! Enclaves for management, attestation and entropy generation.
8//!
9//! nsm_io provides the API and CBOR encoding functionality.
10//! nsm_driver provides the ioctl interface for the Nitro Secure Module driver.
11
12pub mod api;
13#[cfg(feature = "nix")]
14pub mod driver;