[joox] feat #1: add joox decipher implementation

This commit is contained in:
鲁树人
2024-09-17 21:45:51 +01:00
parent b3fc9f8318
commit 12199616c2
13 changed files with 293 additions and 1 deletions

15
um_crypto/joox/Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "umc_joox"
version = "0.1.0"
edition = "2021"
[dependencies]
aes = "0.8.4"
byteorder = "1.5.0"
cipher = "0.4.4"
hmac = "0.12.1"
pbkdf2 = "0.12.2"
sha1 = "0.10.5"
thiserror = "1.0.63"
umc_qmc = { path = "../qmc" }
umc_utils = { path = "../utils" }