pub struct KdfResult {
pub out_data: Option<Vec<u8>>,
pub out_nonce: Option<Vec<u8>>,
}
Expand description
KDF result structure
Fields§
§out_data: Option<Vec<u8>>
Data are available only when the target of the KDF function is ‘Output’ or ‘OutputEnc’
out_nonce: Option<Vec<u8>>
Data are available only when the target of the KDF function is ‘OutputEnc’
Trait Implementations§
impl StructuralPartialEq for KdfResult
Auto Trait Implementations§
impl Freeze for KdfResult
impl RefUnwindSafe for KdfResult
impl Send for KdfResult
impl Sync for KdfResult
impl Unpin for KdfResult
impl UnwindSafe for KdfResult
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