pub struct JournalistLongTermBytes {
pub sig_seed: [u8; 32],
pub fetch_sk: [u8; 32],
pub apke_dhakem_sk: [u8; 32],
pub apke_mlkem_sk: [u8; 2400],
pub apke_mlkem_pk: [u8; 1184],
}Expand description
Byte representation of a Journalist’s long-term keypairs, sufficient
to reconstruct the long-term state via
Journalist::from_long_term_bytes.
Fields§
§sig_seed: [u8; 32]§fetch_sk: [u8; 32]§apke_dhakem_sk: [u8; 32]§apke_mlkem_sk: [u8; 2400]§apke_mlkem_pk: [u8; 1184]Implementations§
Auto Trait Implementations§
impl Freeze for JournalistLongTermBytes
impl RefUnwindSafe for JournalistLongTermBytes
impl Send for JournalistLongTermBytes
impl Sync for JournalistLongTermBytes
impl Unpin for JournalistLongTermBytes
impl UnsafeUnpin for JournalistLongTermBytes
impl UnwindSafe for JournalistLongTermBytes
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