pub struct SeckeyStruct {
pub sig_alg: [u8; 2],
pub kdf_alg: [u8; 2],
pub chk_alg: [u8; 2],
pub kdf_salt: [u8; 32],
pub kdf_opslimit_le: [u8; 8],
pub kdf_memlimit_le: [u8; 8],
pub keynum_sk: KeynumSK,
}
Fields§
§sig_alg: [u8; 2]
§kdf_alg: [u8; 2]
§chk_alg: [u8; 2]
§kdf_salt: [u8; 32]
§kdf_opslimit_le: [u8; 8]
§kdf_memlimit_le: [u8; 8]
§keynum_sk: KeynumSK
Implementations§
Source§impl SeckeyStruct
impl SeckeyStruct
Trait Implementations§
Source§impl Debug for SeckeyStruct
impl Debug for SeckeyStruct
Source§impl PartialEq for SeckeyStruct
impl PartialEq for SeckeyStruct
impl Eq for SeckeyStruct
Auto Trait Implementations§
impl Freeze for SeckeyStruct
impl RefUnwindSafe for SeckeyStruct
impl Send for SeckeyStruct
impl Sync for SeckeyStruct
impl Unpin for SeckeyStruct
impl UnwindSafe for SeckeyStruct
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