algae_cli/
cli.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Implementation of the `decrypt` command.
pub mod decrypt;

/// Implementation of the `encrypt` command.
pub mod encrypt;

/// Implementation of the `keygen` command.
pub mod keygen;

/// Implementation of the `protect` command.
pub mod protect;

/// Implementation of the `reveal` command.
pub mod reveal;