From 3c3d3a6ad0b7d599a9790dc3190c20752ebd3093 Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Wed, 14 Dec 2022 20:38:50 -0800 Subject: [PATCH] spki: publish AlgorithmIdentifierOwned --- spki/src/lib.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/spki/src/lib.rs b/spki/src/lib.rs index 34f5b347e..801765b79 100644 --- a/spki/src/lib.rs +++ b/spki/src/lib.rs @@ -50,7 +50,10 @@ pub use der::{self, asn1::ObjectIdentifier}; #[cfg(feature = "alloc")] pub use { - crate::{spki::SubjectPublicKeyInfoOwned, traits::EncodePublicKey}, + crate::{ + algorithm::AlgorithmIdentifierOwner, spki::SubjectPublicKeyInfoOwned, + traits::EncodePublicKey, + }, der::Document, };