feat: udptes

This commit is contained in:
2025-03-26 23:10:09 +08:00
parent c2b3a779c8
commit 3fb43403aa
7 changed files with 12 additions and 12 deletions

View File

@@ -14,13 +14,13 @@ mod cmd_hmac_decrypt;
mod cmd_list; mod cmd_list;
#[cfg(feature = "with-sequoia-openpgp")] #[cfg(feature = "with-sequoia-openpgp")]
mod cmd_pgp; mod cmd_pgp;
mod cmd_pgpageaddress; mod cmd_pgp_age_address;
mod cmd_pgpcardadmin; mod cmd_pgp_card_admin;
mod cmd_pgpcarddecrypt; mod cmd_pgp_card_decrypt;
mod cmd_pgpcardlist; mod cmd_pgp_card_list;
#[cfg(feature = "with-sequoia-openpgp")] #[cfg(feature = "with-sequoia-openpgp")]
mod cmd_pgpcardmake; mod cmd_pgp_card_make;
mod cmd_pgpcardsign; mod cmd_pgp_card_sign;
mod cmd_piv; mod cmd_piv;
mod cmd_piv_decrypt; mod cmd_piv_decrypt;
mod cmd_piv_ecdh; mod cmd_piv_ecdh;
@@ -107,12 +107,12 @@ fn inner_main() -> CommandError {
Box::new(cmd_rsa_verify::CommandImpl), Box::new(cmd_rsa_verify::CommandImpl),
#[cfg(feature = "with-sequoia-openpgp")] #[cfg(feature = "with-sequoia-openpgp")]
Box::new(cmd_pgp::CommandImpl), Box::new(cmd_pgp::CommandImpl),
Box::new(cmd_pgpcardadmin::CommandImpl), Box::new(cmd_pgp_card_admin::CommandImpl),
Box::new(cmd_pgpcardlist::CommandImpl), Box::new(cmd_pgp_card_list::CommandImpl),
Box::new(cmd_pgpcardsign::CommandImpl), Box::new(cmd_pgp_card_sign::CommandImpl),
Box::new(cmd_pgpcarddecrypt::CommandImpl), Box::new(cmd_pgp_card_decrypt::CommandImpl),
#[cfg(feature = "with-sequoia-openpgp")] #[cfg(feature = "with-sequoia-openpgp")]
Box::new(cmd_pgpcardmake::CommandImpl), Box::new(cmd_pgp_card_make::CommandImpl),
Box::new(cmd_piv::CommandImpl), Box::new(cmd_piv::CommandImpl),
Box::new(cmd_piv_summary::CommandImpl), Box::new(cmd_piv_summary::CommandImpl),
Box::new(cmd_piv_meta::CommandImpl), Box::new(cmd_piv_meta::CommandImpl),
@@ -130,7 +130,7 @@ fn inner_main() -> CommandError {
Box::new(cmd_ssh_piv_cert::CommandImpl), Box::new(cmd_ssh_piv_cert::CommandImpl),
Box::new(cmd_ssh_pub_key::CommandImpl), Box::new(cmd_ssh_pub_key::CommandImpl),
Box::new(cmd_ssh_parse::CommandImpl), Box::new(cmd_ssh_parse::CommandImpl),
Box::new(cmd_pgpageaddress::CommandImpl), Box::new(cmd_pgp_age_address::CommandImpl),
Box::new(cmd_sign_jwt::CommandImpl), Box::new(cmd_sign_jwt::CommandImpl),
Box::new(cmd_sign_jwt_soft::CommandImpl), Box::new(cmd_sign_jwt_soft::CommandImpl),
Box::new(cmd_sign_jwt_se::CommandImpl), Box::new(cmd_sign_jwt_se::CommandImpl),