aboutsummaryrefslogtreecommitdiffstats
path: root/src/auth.rs
diff options
context:
space:
mode:
authorkhai96_ <hvksmr1996@gmail.com>2019-05-01 07:33:12 +0000
committerkhai96_ <hvksmr1996@gmail.com>2019-05-01 07:33:12 +0000
commit9c7c5bcb02536cabd88db8c77c984098c82e9cd5 (patch)
treee22f637909ae2c2926f74d67d6c16e6e19c537fd /src/auth.rs
parentIgnore clippy warnings (diff)
downloadminiserve-9c7c5bcb02536cabd88db8c77c984098c82e9cd5.tar.gz
miniserve-9c7c5bcb02536cabd88db8c77c984098c82e9cd5.zip
Fix some Clippy lints
Diffstat (limited to '')
-rw-r--r--src/auth.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/auth.rs b/src/auth.rs
index 040e81f..e526923 100644
--- a/src/auth.rs
+++ b/src/auth.rs
@@ -75,9 +75,8 @@ pub fn match_auth(basic_auth: BasicAuthParams, required_auth: &RequiredAuth) ->
}
/// Return `true` if hashing of `password` by `T` algorithm equals to `hash`
-#[allow(clippy::ptr_arg)]
-pub fn compare_hash<T: Digest>(password: String, hash: &Vec<u8>) -> bool {
- get_hash::<T>(password) == *hash
+pub fn compare_hash<T: Digest>(password: String, hash: &[u8]) -> bool {
+ get_hash::<T>(password) == hash
}
/// Get hash of a `text`