File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -172,6 +172,7 @@ pub(crate) enum RsaSigningAlgorithmId {
172
172
}
173
173
174
174
#[ allow( clippy:: module_name_repetitions) ]
175
+ /// Encoding type for an RSA signature
175
176
pub struct RsaSignatureEncoding (
176
177
& ' static digest:: Algorithm ,
177
178
& ' static RsaPadding ,
Original file line number Diff line number Diff line change @@ -238,13 +238,13 @@ use core::fmt::{Debug, Formatter};
238
238
#[ cfg( feature = "ring-sig-verify" ) ]
239
239
use untrusted:: Input ;
240
240
241
- pub use crate :: rsa:: signature:: RsaEncoding ;
241
+ pub use crate :: rsa:: signature:: { RsaEncoding , RsaSignatureEncoding } ;
242
242
pub use crate :: rsa:: {
243
243
KeyPair as RsaKeyPair , PublicKey as RsaSubjectPublicKey ,
244
244
PublicKeyComponents as RsaPublicKeyComponents , RsaParameters ,
245
245
} ;
246
246
247
- use crate :: rsa:: signature:: { RsaSignatureEncoding , RsaSigningAlgorithmId } ;
247
+ use crate :: rsa:: signature:: RsaSigningAlgorithmId ;
248
248
use crate :: rsa:: RsaVerificationAlgorithmId ;
249
249
250
250
pub use crate :: ec:: key_pair:: { EcdsaKeyPair , PrivateKey as EcdsaPrivateKey } ;
You can’t perform that action at this time.
0 commit comments