aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/hash.rs
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2014-12-11 11:53:25 -0500
committerSteven Fackler <[email protected]>2014-12-11 11:53:25 -0500
commitf22cdfb5945d175c55a3dcaedfce075b70e18e45 (patch)
tree57b5e5c37c607769671fbbb56dac66b5a58c3856 /src/crypto/hash.rs
parentMerge pull request #117 from Ummon/master (diff)
parentUpdate to nightly: explicit Copy trait (diff)
downloadrust-openssl-f22cdfb5945d175c55a3dcaedfce075b70e18e45.tar.xz
rust-openssl-f22cdfb5945d175c55a3dcaedfce075b70e18e45.zip
Merge pull request #118 from vhbit/oibit-fix
Update to nightly: explicit Copy trait
Diffstat (limited to 'src/crypto/hash.rs')
-rw-r--r--src/crypto/hash.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/crypto/hash.rs b/src/crypto/hash.rs
index b5d0eab5..37573368 100644
--- a/src/crypto/hash.rs
+++ b/src/crypto/hash.rs
@@ -4,6 +4,7 @@ use std::io;
use ffi;
+#[deriving(Copy)]
pub enum HashType {
MD5,
SHA1,