pub struct KemKeypair {
pub public_key: Vec<u8>,
pub secret_key: Vec<u8>,
}Expand description
Result of keypair generation.
Fields§
§public_key: Vec<u8>Public key bytes.
secret_key: Vec<u8>Secret key bytes.
Auto Trait Implementations§
impl Freeze for KemKeypair
impl RefUnwindSafe for KemKeypair
impl Send for KemKeypair
impl Sync for KemKeypair
impl Unpin for KemKeypair
impl UnsafeUnpin for KemKeypair
impl UnwindSafe for KemKeypair
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