diff options
| author | Steven Fackler <[email protected]> | 2014-03-31 23:39:13 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-03-31 23:39:13 -0700 |
| commit | 7d3133104d95f9020f0db4a84115733140af8bfd (patch) | |
| tree | 382a3304d97bdfa05aa923f4eb1db870ced15c04 /crypto/pkey.rs | |
| parent | Update to new inner attribute syntax (diff) | |
| download | rust-openssl-7d3133104d95f9020f0db4a84115733140af8bfd.tar.xz rust-openssl-7d3133104d95f9020f0db4a84115733140af8bfd.zip | |
Update for visibility reform
Diffstat (limited to 'crypto/pkey.rs')
| -rw-r--r-- | crypto/pkey.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/pkey.rs b/crypto/pkey.rs index b4b910bc..abe764dd 100644 --- a/crypto/pkey.rs +++ b/crypto/pkey.rs @@ -75,8 +75,8 @@ fn openssl_hash_nid(hash: HashType) -> c_int { } pub struct PKey { - priv evp: *EVP_PKEY, - priv parts: Parts, + evp: *EVP_PKEY, + parts: Parts, } /// Represents a public key, optionally with a private key attached. |