SecureEnclave

Struct SecureEnclave 

Source
pub struct SecureEnclave { /* private fields */ }
Expand description

The Secure Enclave - hardware-protected execution environment

Implementations§

Source§

impl SecureEnclave

Source

pub fn new(config: EnclaveConfig) -> Self

Create a new secure enclave

Source

pub fn with_sgx() -> Self

Create enclave for Intel SGX

Source

pub fn with_sev() -> Self

Create enclave for AMD SEV

Source

pub fn initialize(&mut self) -> Result<(), EnclaveError>

Initialize the enclave

Source

pub fn enter_secure_mode(&mut self) -> Result<(), EnclaveError>

Enter secure mode (elevate protection)

Source

pub fn exit_secure_mode(&mut self) -> Result<(), EnclaveError>

Exit secure mode

Source

pub fn attest( &mut self, challenge: &[u8; 32], ) -> Result<AttestationReport, EnclaveError>

Perform remote attestation

Source

pub fn verify_attestation( &self, report: &AttestationReport, ) -> Result<bool, EnclaveError>

Verify an attestation report

Source

pub fn seal( &mut self, data: &[u8], policy: SealingPolicy, ) -> Result<SealedData, EnclaveError>

Seal data for storage outside enclave

Source

pub fn unseal(&mut self, sealed: &SealedData) -> Result<Vec<u8>, EnclaveError>

Unseal data inside enclave

Source

pub fn execute_secure<F, T>(&mut self, operation: F) -> Result<T, EnclaveError>
where F: FnOnce() -> T,

Execute sensitive operation inside enclave

Source

pub fn destroy(&mut self) -> Result<(), EnclaveError>

Destroy the enclave securely

Source

pub fn status(&self) -> EnclaveStatus

Get enclave status

Source

pub fn stats(&self) -> &EnclaveStats

Get enclave statistics

Source

pub fn enclave_id(&self) -> u64

Get enclave ID

Source

pub fn platform(&self) -> TeePlatform

Get platform

Trait Implementations§

Source§

impl Debug for SecureEnclave

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for SecureEnclave

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V