pub struct GuestKeys {
pub km_global: [u8; 32],
pub ks: [u8; 32],
pub kc: [u8; 32],
}Expand description
Export guest keys (Km_global, Ks, Kc) from K0. Guest Managers possess only these global keys, not K0 or Km_local, enforcing a cryptographically restricted Read-Only administrative state.
Fields§
§km_global: [u8; 32]§ks: [u8; 32]§kc: [u8; 32]Auto Trait Implementations§
impl Freeze for GuestKeys
impl RefUnwindSafe for GuestKeys
impl Send for GuestKeys
impl Sync for GuestKeys
impl Unpin for GuestKeys
impl UnsafeUnpin for GuestKeys
impl UnwindSafe for GuestKeys
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