pub struct RsaWrappedKeyData {
pub wrapped_key: Vec<u8>,
}Available on crate features
signatures and key-wrapping-rsa only.Expand description
Result of wrapping a content encryption key with RSA-OAEP.
Fields§
§wrapped_key: Vec<u8>The wrapped (encrypted) content encryption key.
Trait Implementations§
Source§impl Clone for RsaWrappedKeyData
impl Clone for RsaWrappedKeyData
Source§fn clone(&self) -> RsaWrappedKeyData
fn clone(&self) -> RsaWrappedKeyData
Returns a duplicate 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 RsaWrappedKeyData
impl RefUnwindSafe for RsaWrappedKeyData
impl Send for RsaWrappedKeyData
impl Sync for RsaWrappedKeyData
impl Unpin for RsaWrappedKeyData
impl UnsafeUnpin for RsaWrappedKeyData
impl UnwindSafe for RsaWrappedKeyData
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