diff options
| author | Valerii Hiora <[email protected]> | 2015-01-03 16:42:58 +0200 |
|---|---|---|
| committer | Valerii Hiora <[email protected]> | 2015-01-03 16:42:58 +0200 |
| commit | cf028e971a11f7ab0a5ab2c01daa03d559db1322 (patch) | |
| tree | 7d7d52e3e7542c7cea656ea69e7a05d10c4ab7b4 /src/crypto/hmac.rs | |
| parent | Merge pull request #134 from DiamondLovesYou/master (diff) | |
| download | rust-openssl-cf028e971a11f7ab0a5ab2c01daa03d559db1322.tar.xz rust-openssl-cf028e971a11f7ab0a5ab2c01daa03d559db1322.zip | |
Updated to master:
- library stab issues
- deriving -> derive
- {mod} -> {self}
Diffstat (limited to 'src/crypto/hmac.rs')
| -rw-r--r-- | src/crypto/hmac.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/hmac.rs b/src/crypto/hmac.rs index 9e8b6361..03e59c6f 100644 --- a/src/crypto/hmac.rs +++ b/src/crypto/hmac.rs @@ -72,7 +72,7 @@ impl Drop for HMAC { #[cfg(test)] mod tests { use serialize::hex::FromHex; - use crypto::hash::HashType::{mod, MD5, SHA1, SHA224, SHA256, SHA384, SHA512}; + use crypto::hash::HashType::{self, MD5, SHA1, SHA224, SHA256, SHA384, SHA512}; use super::HMAC; #[test] |