pub enum AnomalyKind {
ClearKeyPresent,
Protector {
protector_type: u16,
},
WeakCipher {
method: u16,
},
ToGo,
}Expand description
A classified BitLocker metadata observation.
Variants§
ClearKeyPresent
A clear-key protector is present: the VMK is stored unprotected, so the volume can be decrypted with no credential — effectively unencrypted.
Protector
A key protector is present (one per protector).
WeakCipher
The volume cipher is AES-CBC (with or without the Elephant Diffuser), which is weaker than AES-XTS.
ToGo
The volume is a BitLocker To Go removable-media 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
Source§fn eq(&self, other: &AnomalyKind) -> bool
fn eq(&self, other: &AnomalyKind) -> bool
Tests for
self and other values to be equal, and is used by ==.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