Remove private field in ParsedPkcs12

The function definition is fixed - nothing else is going to be coming
out of a PKCS#12 archive
This commit is contained in:
Steven Fackler 2016-10-27 20:33:38 -07:00
parent dafb46fc51
commit c0cf4ab1c2
1 changed files with 0 additions and 2 deletions

View File

@ -58,7 +58,6 @@ impl Pkcs12 {
pkey: pkey, pkey: pkey,
cert: cert, cert: cert,
chain: chain_out, chain: chain_out,
_p: (),
}) })
} }
} }
@ -68,7 +67,6 @@ pub struct ParsedPkcs12 {
pub pkey: PKey, pub pkey: PKey,
pub cert: X509, pub cert: X509,
pub chain: Vec<X509>, pub chain: Vec<X509>,
_p: (),
} }
#[cfg(ossl110)] #[cfg(ossl110)]