diff options
author | khai96_ <hvksmr1996@gmail.com> | 2019-05-01 07:00:30 +0000 |
---|---|---|
committer | khai96_ <hvksmr1996@gmail.com> | 2019-05-01 07:00:30 +0000 |
commit | 3da956c5af09c89e325928efb8dabe55d7fd6983 (patch) | |
tree | ece715cfb53638314f1ce1595bd49caf3505c74a /src/auth.rs | |
parent | Add clippy to CI (diff) | |
download | miniserve-3da956c5af09c89e325928efb8dabe55d7fd6983.tar.gz miniserve-3da956c5af09c89e325928efb8dabe55d7fd6983.zip |
Ignore clippy warnings
Diffstat (limited to 'src/auth.rs')
-rw-r--r-- | src/auth.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/auth.rs b/src/auth.rs index 8e6532b..040e81f 100644 --- a/src/auth.rs +++ b/src/auth.rs @@ -75,6 +75,7 @@ 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 } |