pub enum AnomalyKind {
LegacyTrueCrypt,
HiddenVolumeDeclared {
size: u64,
},
CipherInventory {
prf: &'static str,
cipher: String,
offset: u64,
},
}Expand description
A classified VeraCrypt observation.
Variants§
LegacyTrueCrypt
The volume is a legacy TrueCrypt container.
HiddenVolumeDeclared
The outer header declares a hidden volume (deniable-encryption indicator).
CipherInventory
The cipher/PRF inventory of the unlocked volume.
Implementations§
Source§impl AnomalyKind
impl AnomalyKind
Trait Implementations§
Source§impl Clone for AnomalyKind
impl Clone for AnomalyKind
Source§fn clone(&self) -> AnomalyKind
fn clone(&self) -> AnomalyKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AnomalyKind
impl Debug for AnomalyKind
impl Eq for AnomalyKind
Source§impl PartialEq for AnomalyKind
impl PartialEq for AnomalyKind
impl StructuralPartialEq for AnomalyKind
Auto Trait Implementations§
impl Freeze for AnomalyKind
impl RefUnwindSafe for AnomalyKind
impl Send for AnomalyKind
impl Sync for AnomalyKind
impl Unpin for AnomalyKind
impl UnsafeUnpin for AnomalyKind
impl UnwindSafe for AnomalyKind
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