Struct sgxs::sgxs::CanonicalSgxsReader

source ·
pub struct CanonicalSgxsReader<'a, R: SgxsRead + 'a> { /* private fields */ }
Expand description

The CanonicalSgxsReader struct adds canonicalness checking to any SgxsRead reader.

An SGXS stream is canonical if

  • the first measurement blob is an ECREATE blob, and no other blobs are an ECREATE blob
  • the offset of every EADD blob does not have the lower 12 bits set
  • the offset of every EADD blob is higher than that of any previous EADD blob
  • the offset of every EEXTEND blob does not have the lower 12 bits set
  • the upper 52 bits of offsets of all EEXTEND blobs are equal to those of the preceding EADD blob
  • the lower 12 bits of offsets of all consecutive EEXTEND blobs are unique

Implementations§

source§

impl<'a, R: SgxsRead + 'a> CanonicalSgxsReader<'a, R>

source

pub fn new(reader: &'a mut R) -> Self

Trait Implementations§

source§

impl<'a, R: SgxsRead + 'a> SgxsRead for CanonicalSgxsReader<'a, R>

source§

fn read_meas(&mut self) -> Result<Option<Meas>>

Auto Trait Implementations§

§

impl<'a, R> Freeze for CanonicalSgxsReader<'a, R>

§

impl<'a, R> RefUnwindSafe for CanonicalSgxsReader<'a, R>
where R: RefUnwindSafe,

§

impl<'a, R> Send for CanonicalSgxsReader<'a, R>
where R: Send,

§

impl<'a, R> Sync for CanonicalSgxsReader<'a, R>
where R: Sync,

§

impl<'a, R> Unpin for CanonicalSgxsReader<'a, R>

§

impl<'a, R> !UnwindSafe for CanonicalSgxsReader<'a, R>

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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.