blueprint-tee 0.2.0-alpha.3

First-class TEE (Trusted Execution Environment) support for the Blueprint SDK
1
2
3
4
5
6
7
8
9
10
//! TEE middleware for the Blueprint job pipeline.
//!
//! Provides [`TeeLayer`] for attaching attestation metadata to job results
//! and [`TeeContext`] as an extractor for job handlers.

pub mod tee_context;
pub mod tee_layer;

pub use tee_context::TeeContext;
pub use tee_layer::TeeLayer;