Skip to main content

aws_nitro_enclaves_image_format/
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 Enclaves Image Format API
5//!
6//! This is the library that provides the API for interacting with Enclave Image Format (EIF) files
7//! used in AWS Nitro Enclaves.
8//!
9//! defs provides the APIs that define an EIF and related objects.
10//! utils provides the APIs to consume and interact with an EIF and related objects.
11
12pub mod defs;
13pub mod utils;