shadowforge 0.1.0

Quantum-resistant steganography toolkit for journalists and whistleblowers
Documentation
1
2
3
4
5
6
7
8
//! shadowforge — quantum-resistant steganography toolkit.

fn main() {
    if let Err(e) = shadowforge_lib::interface::runner::run() {
        eprintln!("error: {e}");
        std::process::exit(1);
    }
}