feat(crypto):完成AES系列加密算法便捷函数的实现。

This commit is contained in:
徐涛
2023-07-02 11:15:07 +08:00
parent a19dfd1e1b
commit 8cbb7f5269
5 changed files with 178 additions and 5 deletions

View File

@@ -12,9 +12,11 @@ crate-type = ["dylib", "rlib"]
aes = "0.8.3"
base64 = "0.21.2"
blockhash = "0.5.0"
cbc = "0.1.2"
cbc = { version = "0.1.2", features = ["std"] }
cipher = "0.4.4"
des = "0.8.1"
hex = "0.4.3"
hmac-sha256 = "1.1.7"
hmac-sha512 = "1.1.5"
image = "0.24.6"
md-5 = "0.10.5"