feat: v1.11.8, add keypair-keychain-import/export

This commit is contained in:
2025-03-26 23:37:21 +08:00
parent 3fb43403aa
commit 070161c056
6 changed files with 98 additions and 23 deletions

View File

@@ -53,6 +53,8 @@ mod cmd_u2f_sign;
mod cmd_file_verify;
mod cmd_parseecdsasignature;
mod cmd_keypair_generate;
mod cmd_keypair_keychain_import;
mod cmd_keypair_keychain_export;
mod digest;
mod ecdhutil;
mod ecdsautil;
@@ -144,6 +146,8 @@ fn inner_main() -> CommandError {
Box::new(cmd_ec_verify::CommandImpl),
Box::new(cmd_parseecdsasignature::CommandImpl),
Box::new(cmd_keypair_generate::CommandImpl),
Box::new(cmd_keypair_keychain_import::CommandImpl),
Box::new(cmd_keypair_keychain_export::CommandImpl),
];
#[allow(clippy::vec_init_then_push)]