pub struct AesInfo {
pub aes_mode: AesMode,
pub verification_value: [u8; 2],
pub salt: Vec<u8>,
}
Expand description
Holds the AES information of a file in the zip archive
Fields§
§aes_mode: AesMode
The AES encryption mode
verification_value: [u8; 2]
The verification key
salt: Vec<u8>
The salt
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AesInfo
impl RefUnwindSafe for AesInfo
impl Send for AesInfo
impl Sync for AesInfo
impl Unpin for AesInfo
impl UnwindSafe for AesInfo
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