[qtfm] feat #4: implement QingTingFM decipher

This commit is contained in:
鲁树人
2024-09-20 00:43:06 +01:00
parent 5748d92af4
commit 8f00373dbf
11 changed files with 303 additions and 0 deletions

12
um_crypto/qtfm/Cargo.toml Normal file
View File

@@ -0,0 +1,12 @@
[package]
name = "umc_qtfm"
version = "0.1.0"
edition = "2021"
[dependencies]
aes = "0.8.4"
byteorder = "1.5.0"
cbc = "0.1.2"
ctr = "0.9.2"
thiserror = "1.0.63"
umc_utils = { path = "../utils" }