Struct sgxs::sigstruct::Signer

source ·
pub struct Signer { /* private fields */ }

Implementations§

source§

impl Signer

source

pub fn new(enclavehash: EnclaveHash) -> Signer

Create a new Signer with default attributes (64-bit, XFRM: 0x3) and today’s date.

source

pub fn unsigned_hash<H: SgxHashOps>(&self) -> Hash

source

pub fn unsigned_sig(&self) -> Sigstruct

source

pub fn sign<K: SgxRsaOps, H: SgxHashOps>( self, key: &K ) -> Result<Sigstruct, K::Error>

§Panics

Panics if key is not 3072 bits. Panics if the public exponent of key is not 3.

source

pub fn cat_sign<K: SgxRsaPubOps + SgxRsaOps>( &self, key: &K, s_vec: Vec<u8> ) -> Result<Sigstruct, <K as SgxRsaPubOps>::Error>

Adds a signature from raw bytes. This is used to add a signature generated in an out-of-band process outside of sgxs-tools.

source

pub fn date(&mut self, year: u16, month: u8, day: u8) -> &mut Self

source

pub fn swdefined(&mut self, swdefined: u32) -> &mut Self

source

pub fn isvprodid(&mut self, isvprodid: u16) -> &mut Self

source

pub fn isvsvn(&mut self, isvsvn: u16) -> &mut Self

source

pub fn miscselect(&mut self, miscselect: Miscselect, mask: u32) -> &mut Self

source

pub fn attributes_flags( &mut self, flags: AttributesFlags, mask: u64 ) -> &mut Self

source

pub fn attributes_xfrm(&mut self, xfrm: u64, mask: u64) -> &mut Self

source

pub fn enclavehash(&mut self, hash: EnclaveHash) -> &mut Self

Trait Implementations§

source§

impl Clone for Signer

source§

fn clone(&self) -> Signer

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Signer

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Signer

§

impl RefUnwindSafe for Signer

§

impl Send for Signer

§

impl Sync for Signer

§

impl Unpin for Signer

§

impl UnwindSafe for Signer

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.