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:
parent
dafb46fc51
commit
c0cf4ab1c2
|
|
@ -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)]
|
||||
|
|
|
|||
Loading…
Reference in New Issue