Skip to content

Commit

Permalink
NFC: Address Clippy unused import warning.
Browse files Browse the repository at this point in the history
See #1887 about addressing this
messiness long-term.
  • Loading branch information
briansmith committed Jan 9, 2024
1 parent 7f8fb38 commit c4742e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rsa/padding.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ mod pkcs1;
mod pss;

pub use self::{
pkcs1::{PKCS1, RSA_PKCS1_SHA256, RSA_PKCS1_SHA384, RSA_PKCS1_SHA512},
pss::{PSS, RSA_PSS_SHA256, RSA_PSS_SHA384, RSA_PSS_SHA512},
pkcs1::{RSA_PKCS1_SHA256, RSA_PKCS1_SHA384, RSA_PKCS1_SHA512},
pss::{RSA_PSS_SHA256, RSA_PSS_SHA384, RSA_PSS_SHA512},
};
pub(super) use pkcs1::RSA_PKCS1_SHA1_FOR_LEGACY_USE_ONLY;

Expand Down

0 comments on commit c4742e0

Please sign in to comment.