stegosaurust 0.3.0

A steganography tool, written in rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Stegosaurust is a command line program and library to perform steganography in rust.

/// Data structures for parsing and validating command line options to `stegosaurust`.
pub mod cli;

mod run;
pub use run::run;

/// Compression module with a simple interface to compression/decomporession functions, without all the fuss.
pub mod compress;
/// Cryptography module to provide a simple interface to
/// common encryption and hashing function, without all the fuss.
pub mod crypto;
/// Steganography module containing different implementations of encoding methods.
pub mod steganography;