aboutsummaryrefslogtreecommitdiff
path: root/crypto/hash.rs
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2014-03-31 23:39:13 -0700
committerSteven Fackler <[email protected]>2014-03-31 23:39:13 -0700
commit7d3133104d95f9020f0db4a84115733140af8bfd (patch)
tree382a3304d97bdfa05aa923f4eb1db870ced15c04 /crypto/hash.rs
parentUpdate to new inner attribute syntax (diff)
downloadrust-openssl-7d3133104d95f9020f0db4a84115733140af8bfd.tar.xz
rust-openssl-7d3133104d95f9020f0db4a84115733140af8bfd.zip
Update for visibility reform
Diffstat (limited to 'crypto/hash.rs')
-rw-r--r--crypto/hash.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/hash.rs b/crypto/hash.rs
index c4d27a7a..60a98e98 100644
--- a/crypto/hash.rs
+++ b/crypto/hash.rs
@@ -49,9 +49,9 @@ pub fn evpmd(t: HashType) -> (EVP_MD, uint) {
}
pub struct Hasher {
- priv evp: EVP_MD,
- priv ctx: EVP_MD_CTX,
- priv len: uint,
+ evp: EVP_MD,
+ ctx: EVP_MD_CTX,
+ len: uint,
}
impl Hasher {