Upgrade dependencies #6

Merged
MightyPork merged 1 commits from silwol/digest_auth_rs:update-deps into master 2023-05-09 07:40:10 +00:00
2 changed files with 5 additions and 5 deletions
Showing only changes of commit 49d214bfd6 - Show all commits
+3 -3
View File
@@ -17,9 +17,9 @@ license = "MIT"
[dependencies]
rand = "0.8"
hex = "0.4"
sha2 = "0.9"
md-5 = "0.9"
digest = "0.9"
sha2 = "0.10"
md-5 = "0.10"
digest = "0.10"
[dependencies.http]
version = "0.2.4"
+2 -2
View File
@@ -7,7 +7,7 @@ use std::str::FromStr;
use digest::{Digest, DynDigest};
use md5::Md5;
use sha2::{Sha256, Sha512Trunc256};
use sha2::{Sha256, Sha512_256};
use std::borrow::Cow;
/// Algorithm type
@@ -37,7 +37,7 @@ impl Algorithm {
let mut hash: Box<dyn DynDigest> = match self.algo {
AlgorithmType::MD5 => Box::new(Md5::new()),
AlgorithmType::SHA2_256 => Box::new(Sha256::new()),
AlgorithmType::SHA2_512_256 => Box::new(Sha512Trunc256::new()),
AlgorithmType::SHA2_512_256 => Box::new(Sha512_256::new()),
};
hash.update(bytes);