Commit c0cf4ab1 authored by Steven Fackler's avatar Steven Fackler
Browse files

Remove private field in ParsedPkcs12

The function definition is fixed - nothing else is going to be coming
out of a PKCS#12 archive
parent dafb46fc
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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)]