feat: v1.1.7, add rsa-encrypt sub command

This commit is contained in:
2022-04-09 09:34:24 +08:00
parent d97ac5398f
commit 9e6a1f3ab5
4 changed files with 96 additions and 2 deletions

View File

@@ -11,6 +11,7 @@ mod pkiutil;
mod pgpcardutil;
mod cmd_u2fregister;
mod cmd_u2fsign;
mod cmd_rsaencrypt;
mod cmd_pgp;
mod cmd_pgpcardadmin;
mod cmd_pgpcardlist;
@@ -44,6 +45,7 @@ fn inner_main() -> CommandError {
let commands: Vec<Box<dyn Command>> = vec![
Box::new(cmd_chall::CommandImpl),
Box::new(cmd_challconfig::CommandImpl),
Box::new(cmd_rsaencrypt::CommandImpl),
Box::new(cmd_pgp::CommandImpl),
Box::new(cmd_pgpcardadmin::CommandImpl),
Box::new(cmd_pgpcardlist::CommandImpl),