cryptrsa 0.1.3

RSA encryption and signing CLI tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Copyright Soumyadip Sarkar 2025. All Rights Reserved

use clap::Parser;

use cryptrsa::cli::commands::{run, Cli};

fn main() -> std::io::Result<()> {
    let cli = Cli::parse();
    run(cli)
}