feat: v1.1.0, add static x25519 support

This commit is contained in:
2023-12-08 21:36:03 +08:00
parent 883ed0918b
commit fd7e8d35a6
12 changed files with 209 additions and 39 deletions

View File

@@ -1,10 +1,10 @@
pub use cmd_config::CmdConfig;
pub use cmd_config::config;
#[cfg(feature = "smartcard")]
#[cfg(feature = "decrypt")]
pub use cmd_decrypt::CmdDecrypt;
#[cfg(feature = "smartcard")]
#[cfg(feature = "decrypt")]
pub use cmd_decrypt::decrypt;
#[cfg(feature = "smartcard")]
#[cfg(feature = "decrypt")]
pub use cmd_decrypt::decrypt_single;
pub use cmd_directdecrypt::CmdDirectDecrypt;
pub use cmd_directdecrypt::direct_decrypt;
@@ -21,7 +21,9 @@ pub use cmd_version::version;
pub use cmd_initkeychainkey::CmdKeychainKey;
#[cfg(feature = "macos")]
pub use cmd_initkeychainkey::keychain_key;
#[cfg(feature = "decrypt")]
pub use cmd_execenv::CmdExecEnv;
#[cfg(feature = "decrypt")]
pub use cmd_execenv::exec_env;
@@ -30,9 +32,9 @@ mod util;
mod util_env;
mod util_digest;
mod util_progress;
#[cfg(feature = "smartcard")]
#[cfg(feature = "decrypt")]
mod util_piv;
#[cfg(feature = "smartcard")]
#[cfg(feature = "decrypt")]
mod util_pgp;
mod util_p256;
mod util_p384;
@@ -50,11 +52,14 @@ mod util_enc_file;
mod cmd_version;
mod cmd_config;
mod cmd_info;
#[cfg(feature = "smartcard")]
#[cfg(feature = "decrypt")]
mod cmd_decrypt;
mod cmd_encrypt;
mod cmd_directdecrypt;
#[cfg(feature = "macos")]
mod cmd_initkeychainkey;
#[cfg(feature = "macos")]
mod util_keychainpasskey;
#[cfg(feature = "decrypt")]
mod cmd_execenv;