pub enum Technique {
Lsb,
Dct,
Palette,
LsbAudio,
Phase,
Echo,
ZeroWidth,
PdfStream,
PdfMeta,
Corpus,
}Expand description
Steganographic technique.
Variants§
Lsb
LSB substitution in PNG/BMP images.
Dct
DCT coefficient modulation in JPEG.
Palette
Palette index substitution for indexed images.
LsbAudio
LSB substitution in WAV audio.
Phase
Phase encoding in WAV audio.
Echo
Echo hiding in WAV audio.
ZeroWidth
Zero-width Unicode characters in text.
PdfStream
PDF content stream LSB.
PdfMeta
PDF metadata embedding.
Corpus
Corpus-based zero-modification selection.
Trait Implementations§
impl Copy for Technique
Auto Trait Implementations§
impl Freeze for Technique
impl RefUnwindSafe for Technique
impl Send for Technique
impl Sync for Technique
impl Unpin for Technique
impl UnsafeUnpin for Technique
impl UnwindSafe for Technique
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more