diff options
| author | Steven Fackler <[email protected]> | 2016-10-27 20:33:38 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-10-27 20:33:38 -0700 |
| commit | c0cf4ab1c230421084939626d6c815f162564416 (patch) | |
| tree | a8ff782d5aa52080cf4231627169afccf62f6e03 /openssl | |
| parent | Camel case DH (diff) | |
| download | rust-openssl-c0cf4ab1c230421084939626d6c815f162564416.tar.xz rust-openssl-c0cf4ab1c230421084939626d6c815f162564416.zip | |
Remove private field in ParsedPkcs12
The function definition is fixed - nothing else is going to be coming
out of a PKCS#12 archive
Diffstat (limited to 'openssl')
| -rw-r--r-- | openssl/src/pkcs12.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/openssl/src/pkcs12.rs b/openssl/src/pkcs12.rs index f143ec49..d5d4750a 100644 --- a/openssl/src/pkcs12.rs +++ b/openssl/src/pkcs12.rs @@ -58,7 +58,6 @@ impl Pkcs12 { pkey: pkey, cert: cert, chain: chain_out, - _p: (), }) } } @@ -68,7 +67,6 @@ pub struct ParsedPkcs12 { pub pkey: PKey, pub cert: X509, pub chain: Vec<X509>, - _p: (), } #[cfg(ossl110)] |