Update Rust crate hmac to 0.13
All checks were successful
Build and Test / rust-boss (push) Successful in 6m44s

This commit is contained in:
BloxerHD 2026-05-26 15:18:45 +01:00
commit 2d5d92cc79
Signed by: bloxerhd018
SSH key fingerprint: SHA256:ItSfcfhpXlfkMK3uQSDYW5X3XKm0hbHWQqWcCK57px8
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ hex = "0.4"
hex-literal = "1.0"
aes = "0.9"
ctr = "0.10"
hmac = "0.12"
hmac = "0.13"
md-5 = "0.11"
rand = "0.10"
anyhow = "1.0"

View file

@ -1,6 +1,6 @@
use aes::Aes128;
use ctr::cipher::{KeyIvInit, StreamCipher};
use hmac::{Hmac, Mac};
use hmac::{Hmac, KeyInit, Mac};
use sha2::Sha256;
use md5::{Md5, Digest};
use rand::Rng;