feat: v0.7.0, add direct decrypt

This commit is contained in:
2023-10-29 00:38:00 +08:00
parent fa5d01a7d5
commit 9e46d11e89
6 changed files with 131 additions and 4 deletions

View File

@@ -3,6 +3,8 @@ pub use cmd_config::config;
pub use cmd_decrypt::CmdDecrypt;
pub use cmd_decrypt::decrypt;
pub use cmd_decrypt::decrypt_single;
pub use cmd_directdecrypt::CmdDirectDecrypt;
pub use cmd_directdecrypt::direct_decrypt;
pub use cmd_encrypt::CmdEncrypt;
pub use cmd_encrypt::encrypt;
pub use cmd_encrypt::encrypt_single;
@@ -38,4 +40,5 @@ mod cmd_config;
mod cmd_info;
mod cmd_decrypt;
mod cmd_encrypt;
mod cmd_directdecrypt;