mirror of
https://github.com/matter-labs/teepot.git
synced 2025-07-22 07:24:48 +02:00
14 lines
262 B
Rust
14 lines
262 B
Rust
// SPDX-License-Identifier: Apache-2.0
|
|
// Copyright (c) 2023 Matter Labs
|
|
|
|
//! Helper functions to verify Intel SGX enclaves and other TEEs.
|
|
|
|
#![deny(missing_docs)]
|
|
#![deny(clippy::all)]
|
|
|
|
pub mod client;
|
|
pub mod json;
|
|
pub mod server;
|
|
pub mod sgx;
|
|
|
|
pub mod quote;
|