From 9381b5b985684431b746858fd52b622f13f5d830 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Fri, 6 May 2022 16:52:41 -0600 Subject: [PATCH] pkcs8: re-export `AssociatedOid` This trait can be used to associate an OID with a particular type --- 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 01ecbb6d0..1d2dfa284 100644 --- a/pkcs8/src/lib.rs +++ b/pkcs8/src/lib.rs @@ -83,7 +83,7 @@ pub use crate::{ traits::DecodePrivateKey, version::Version, }; -pub use der::{self, asn1::ObjectIdentifier}; +pub use der::{self, asn1::ObjectIdentifier, oid::AssociatedOid}; pub use spki::{self, AlgorithmIdentifier, DecodePublicKey, SubjectPublicKeyInfo}; #[cfg(feature = "alloc")]