Struct tss_esapi::abstraction::transient::MakeCredParams

source ·
pub struct MakeCredParams {
    pub name: Vec<u8>,
    pub public: Vec<u8>,
    pub attesting_key_pub: PublicKey,
}
Expand description

Wrapper for the parameters needed by MakeCredential

The 3rd party requesting proof that the key is indeed backed by a TPM would perform a MakeCredential and would thus require name and attesting_key_pub as inputs for that operation.

public is not strictly needed, however it is returned as a convenience block of data. Since the MakeCredential operation bakes into the encrypted credential the identity of the key to be attested via its name, the correctness of the name must be verifiable by the said 3rd party. public bridges this gap:

  • it includes all the public parameters of the attested key
  • can be hashed (in its marshaled form) with the name hash (found by unmarshaling it) to obtain name

Fields§

§name: Vec<u8>

TPM name of the object being attested

§public: Vec<u8>

Encoding of the public parameters of the object whose name will be included in the credential computations

§attesting_key_pub: PublicKey

Public part of the key used to protect the credential

Trait Implementations§

source§

impl Debug for MakeCredParams

source§

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

Formats the value using the given formatter. 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> Free for T

source§

unsafe fn free(ptr_ref: NonNull<T>)

Drops the content pointed by this pointer and frees it. 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.