stego_rust 0.2.0

Library for image steganography with AES-256-GCM encryption and Argon2id key derivation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// LSB capacity calculation.
pub mod capacity;
/// Stego decoder.
pub mod decoder;
/// Stego encoder.
pub mod encoder;
/// LSB bit-level reader and writer.
pub mod lsb;

pub use capacity::image_capacity;
pub use decoder::StegoDecoder;
pub use encoder::{scan_used_channels, StegoEncoder};