From bb64b55bf0691694b64e958d570faeb45949c06b Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Fri, 29 Sep 2023 22:15:11 -0700 Subject: [PATCH] Do not deprecate the `signature::RsaPublicKey` alias yet. Unless/until a bigger refactoring is completed, don't bother people about the new name. --- src/signature.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/signature.rs b/src/signature.rs index 527386e12..64f7d0893 100644 --- a/src/signature.rs +++ b/src/signature.rs @@ -296,7 +296,6 @@ pub use crate::rsa::{ /// An RSA key pair, used for signing. #[cfg(feature = "alloc")] -#[deprecated = "Use `rsa::KeyPair`"] pub type RsaKeyPair = crate::rsa::KeyPair; /// A public key signature returned from a signing operation.