feat: v1.11.17

This commit is contained in:
2025-04-30 01:19:21 +08:00
parent 4dca8e0146
commit 21676451fd
6 changed files with 126 additions and 2 deletions

View File

@@ -10,6 +10,9 @@ mod cmd_chall_config;
mod cmd_convert_jwk_to_pem;
mod cmd_convert_pem_to_jwk;
mod cmd_ec_verify;
mod cmd_external_public_key;
mod cmd_external_sign;
mod cmd_external_spec;
mod cmd_file_sign;
mod cmd_file_verify;
mod cmd_hmac_decrypt;
@@ -154,6 +157,9 @@ fn inner_main() -> CommandError {
Box::new(cmd_keypair_keychain_export::CommandImpl),
Box::new(cmd_convert_pem_to_jwk::CommandImpl),
Box::new(cmd_convert_jwk_to_pem::CommandImpl),
Box::new(cmd_external_spec::CommandImpl),
Box::new(cmd_external_public_key::CommandImpl),
Box::new(cmd_external_sign::CommandImpl),
];
#[allow(clippy::vec_init_then_push)]