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 a206284 commit cfb14a3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/rsa/padding.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ 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;

/// Common features of both RSA padding encoding and RSA padding verification.
Expand Down

0 comments on commit cfb14a3

Please sign in to comment.