From d91163054595a486163b755c4256c84d2a2198fb Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Fri, 4 Aug 2023 04:34:25 +0000 Subject: [PATCH] pkcs8: expose `PrivateKeyInfoOwned` Signed-off-by: Arthur Gautier --- pkcs8/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkcs8/src/lib.rs b/pkcs8/src/lib.rs index dcc4bbbfc..6578e3a18 100644 --- a/pkcs8/src/lib.rs +++ b/pkcs8/src/lib.rs @@ -96,7 +96,7 @@ pub use spki::{ #[cfg(feature = "alloc")] pub use { - crate::traits::EncodePrivateKey, + crate::{private_key_info::PrivateKeyInfoOwned, traits::EncodePrivateKey}, der::{Document, SecretDocument}, spki::EncodePublicKey, };