pub struct OaepPadding {
pub algorithm: HashAlgorithmId,
pub label: Vec<u8>,
}
Expand description
OAEP (Optimal Asymmetric Encryption Padding) data.
Fields§
§algorithm: HashAlgorithmId
§label: Vec<u8>
Trait Implementations§
Source§impl Clone for OaepPadding
impl Clone for OaepPadding
Source§fn clone(&self) -> OaepPadding
fn clone(&self) -> OaepPadding
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for OaepPadding
impl RefUnwindSafe for OaepPadding
impl Send for OaepPadding
impl Sync for OaepPadding
impl Unpin for OaepPadding
impl UnwindSafe for OaepPadding
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