pub struct Pbes2WrappedKeyData {
pub wrapped_key: Vec<u8>,
pub salt: Vec<u8>,
pub iterations: u32,
}Available on crate features
signatures and key-wrapping-pbes2 only.Expand description
Result of wrapping a content encryption key with PBES2.
Fields§
§wrapped_key: Vec<u8>The wrapped (encrypted) content encryption key.
salt: Vec<u8>The salt used for key derivation.
iterations: u32The PBKDF2 iteration count.
Trait Implementations§
Source§impl Clone for Pbes2WrappedKeyData
impl Clone for Pbes2WrappedKeyData
Source§fn clone(&self) -> Pbes2WrappedKeyData
fn clone(&self) -> Pbes2WrappedKeyData
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 Pbes2WrappedKeyData
impl RefUnwindSafe for Pbes2WrappedKeyData
impl Send for Pbes2WrappedKeyData
impl Sync for Pbes2WrappedKeyData
impl Unpin for Pbes2WrappedKeyData
impl UnsafeUnpin for Pbes2WrappedKeyData
impl UnwindSafe for Pbes2WrappedKeyData
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