diff --git a/Cargo.lock b/Cargo.lock index 2b9745a..a032a85 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -21,6 +21,7 @@ dependencies = [ "cfg-if", "cipher", "cpufeatures 0.2.17", + "zeroize", ] [[package]] @@ -2899,7 +2900,7 @@ checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" [[package]] name = "telemt" -version = "3.4.23" +version = "3.4.24" dependencies = [ "aes", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 72816d2..529f2e9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "telemt" -version = "3.4.23" +version = "3.4.24" edition = "2024" [features] @@ -15,8 +15,8 @@ tokio = { version = "1.52.3", features = ["full", "tracing"] } tokio-util = { version = "0.7.18", features = ["full"] } # Crypto -aes = "0.8.4" -ctr = "0.9.2" +aes = { version = "0.8.4", features = ["zeroize"] } +ctr = { version = "0.9.2", features = ["zeroize"] } cbc = "0.1.2" sha2 = "0.10.9" sha1 = "0.10.6"