pub struct KeyMaterialData {
pub hash: HWHash,
pub guk: HWSymmetricKey,
}Expand description
Represents data required for key derivation (CPAK/DAK).
Fields§
§hash: HWHashBootloader image singed hash.
guk: HWSymmetricKeyGroup unique 256bit symmetric key.
Trait Implementations§
Source§impl Clone for KeyMaterialData
impl Clone for KeyMaterialData
Source§fn clone(&self) -> KeyMaterialData
fn clone(&self) -> KeyMaterialData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for KeyMaterialData
impl RefUnwindSafe for KeyMaterialData
impl Send for KeyMaterialData
impl Sync for KeyMaterialData
impl Unpin for KeyMaterialData
impl UnsafeUnpin for KeyMaterialData
impl UnwindSafe for KeyMaterialData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more