From c0cf4ab1c230421084939626d6c815f162564416 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Thu, 27 Oct 2016 20:33:38 -0700 Subject: [PATCH] Remove private field in ParsedPkcs12 The function definition is fixed - nothing else is going to be coming out of a PKCS#12 archive --- openssl/src/pkcs12.rs | 2 -- 1 file changed, 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, - _p: (), } #[cfg(ossl110)]