[][src]Struct sgxs::sgxs::CanonicalSgxsReader

pub struct CanonicalSgxsReader<'a, R: SgxsRead + 'a> { /* fields omitted */ }

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

Methods

impl<'a, R: SgxsRead + 'a> CanonicalSgxsReader<'a, R>[src]

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

Trait Implementations

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

Auto Trait Implementations

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>

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

Blanket Implementations

impl<R> SgxsRead for R where
    R: Read
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]