diff options
| author | Steven Fackler <[email protected]> | 2013-12-28 18:39:07 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2013-12-28 18:39:07 -0700 |
| commit | 9b3746260cb88e36df9be16b72c1c5f39204e78e (patch) | |
| tree | aadd76325a0505e0f6bfbea87444170501703e50 /crypto/hash.rs | |
| parent | Merge remote-tracking branches 'rustcrypto/master' and 'rust-ssl/master' (diff) | |
| download | rust-openssl-9b3746260cb88e36df9be16b72c1c5f39204e78e.tar.xz rust-openssl-9b3746260cb88e36df9be16b72c1c5f39204e78e.zip | |
Integrate everything
Diffstat (limited to 'crypto/hash.rs')
| -rw-r--r-- | crypto/hash.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/hash.rs b/crypto/hash.rs index bb75d0ef..9967ee1f 100644 --- a/crypto/hash.rs +++ b/crypto/hash.rs @@ -105,8 +105,8 @@ pub fn hash(t: HashType, data: &[u8]) -> ~[u8] { #[cfg(test)] mod tests { - use hex::FromHex; - use hex::ToHex; + use crypto::hex::FromHex; + use crypto::hex::ToHex; struct HashTest { input: ~[u8], |