feat: v1.1.8, add rsa-decrypt sub command

This commit is contained in:
2022-04-09 09:48:38 +08:00
parent 9e6a1f3ab5
commit cf1e307a06
5 changed files with 87 additions and 2 deletions

View File

@@ -12,6 +12,7 @@ mod pgpcardutil;
mod cmd_u2fregister;
mod cmd_u2fsign;
mod cmd_rsaencrypt;
mod cmd_rsadecrypt;
mod cmd_pgp;
mod cmd_pgpcardadmin;
mod cmd_pgpcardlist;
@@ -46,6 +47,7 @@ fn inner_main() -> CommandError {
Box::new(cmd_chall::CommandImpl),
Box::new(cmd_challconfig::CommandImpl),
Box::new(cmd_rsaencrypt::CommandImpl),
Box::new(cmd_rsadecrypt::CommandImpl),
Box::new(cmd_pgp::CommandImpl),
Box::new(cmd_pgpcardadmin::CommandImpl),
Box::new(cmd_pgpcardlist::CommandImpl),