pub struct PcrSelectionListBuilder { /* private fields */ }
Expand description

A builder for the PcrSelectionList struct.

Implementations§

source§

impl PcrSelectionListBuilder

source

pub fn new() -> Self

source

pub fn with_size_of_select(self, size_of_select: PcrSelectSize) -> Self

Set the size of the pcr selection(sizeofSelect)

Arguments

size_of_select – The size that will be used for all selections(sizeofSelect).

source

pub fn with_selection( self, hash_algorithm: HashingAlgorithm, pcr_slots: &[PcrSlot] ) -> Self

Adds a selection associated with a specific HashingAlgorithm.

This function will not overwrite the values already associated with a specific HashingAlgorithm only update.

Arguments

hash_algorithm – The HashingAlgorithm associated with the pcr selection pcr_slots – The PCR slots in the selection.

source

pub fn build(self) -> Result<PcrSelectionList>

Builds a PcrSelections with the values that have been provided.

If no size of select have been provided then it will be defaulted to to the most suitable with regard to TPM2_PCR_SELECT_MAX. This may not be the correct size for the current platform. The correct values can be obtained by querying the tpm for its capabilities.

Trait Implementations§

source§

impl Debug for PcrSelectionListBuilder

source§

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

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

impl Default for PcrSelectionListBuilder

source§

fn default() -> PcrSelectionListBuilder

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

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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§

default 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 Twhere 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 Twhere 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 Twhere 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.