feat: v1.11.14, add convert-pem-to-jwk

This commit is contained in:
2025-03-29 17:09:13 +08:00
parent e6409174b6
commit fe30f538ba
6 changed files with 76 additions and 4 deletions

View File

@@ -72,6 +72,8 @@ mod sshutil;
mod util;
mod keychain;
mod cmdutil;
mod cmd_convert_pem_to_jwk;
mod ecutil;
pub struct DefaultCommandImpl;
@@ -149,6 +151,7 @@ fn inner_main() -> CommandError {
Box::new(cmd_keypair_generate::CommandImpl),
Box::new(cmd_keypair_keychain_import::CommandImpl),
Box::new(cmd_keypair_keychain_export::CommandImpl),
Box::new(cmd_convert_pem_to_jwk::CommandImpl),
];
#[allow(clippy::vec_init_then_push)]