1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//! # ptero
//!
//! `ptero` is a crate with utilities for the `ptero_cli` frontend

/// Utils for binary data manipulation
pub mod binary;

/// Provides functions for manipulation text e.g. word iterator
pub mod text;

/// Contains secret data encoders both simple and complex ones.
pub mod encoder;

/// Contains stegotext decoders.
pub mod decoder;

/// Context containing all needed data (e.g. access to cover text) for the steganography methods.
pub mod context;

/// Module containing all the available methods for text steganography. 
pub mod method;

/// Logger utilities.
pub mod log;

pub mod cli {
    pub mod capacity;
    pub mod decoder;
    pub mod encoder;
    pub mod writer;
    pub mod progress;
}