-
Notifications
You must be signed in to change notification settings - Fork 164
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
feat: switch from num-bigint-dig to crypto-bigint #394
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I could continue scanning this PR looking for improvements, but I don't see any worth blocking a merge on. I can retroactively file some issues perhaps.
@tarcieri updated to the latest version, and fixed a subtle padding bug that I found, please take a final look before I merge |
7e9dffd
to
3a0201c
Compare
pub fn random<R: CryptoRngCore + ?Sized>(rng: &mut R, bit_size: usize) -> Result<Self> { | ||
pub fn random<R: CryptoRngCore>(rng: &mut R, bit_size: usize) -> Result<Self> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a particular reason you're getting rid of ?Sized
on these? It makes it possible to use a dyn CryptoRngCore
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a particular reason you're getting rid of ?Sized on these? It makes it possible to use a dyn CryptoRngCore
I don't think so, can revert probably
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I checked, and I removed it because I can't pass that constraint to crypto_primes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding it to crypto-primes
is unfortunately blocked by crypto-bigint
not supporting it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Made RustCrypto/crypto-bigint#760 for that
src/pss.rs
Outdated
|
||
let em = BoxedUint::from_be_slice( | ||
&em, | ||
crate::traits::keys::PublicKeyParts::n_bits_precision(priv_key), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similar concern re: PublicKeyParts
#[cfg(feature = "std")] | ||
let inner = inner | ||
.map_err(|e| Box::new(e) as Box<dyn core::error::Error + Send + Sync + 'static>)?; | ||
#[cfg(not(feature = "std"))] | ||
let inner = inner.map_err(|_| signature::Error::new())?; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ugh, should really fix this upstream in the signature
crate
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Various little nits but things are looking a lot better on this pass
@dignifiedquire can we land this? |
There's a minor thing of needing the |
Also the 6-10x performance drop is quite surprising, but that can be addressed in a follow-up as well. |
I removed that, there is some other follow ups from you and @tarcieri I wanted to get to, but we can also merge as is |
Thank you everyone who helped make this a reality! And sorry for this taking so long.. |
Notably includes #394 which migrates to `crypto-bigint`
Very, very WIPNot anymore, this is ready for review.
Replaces all usage of
num-bigint-dig
basedBigInt
usage with the newcrypto-bigint
crate, usingBoxedUint
Current known issue is that we do have a performance regression, which will be able to get rid of over time:
TODOs
RsaPrivateKey
RsaPublicKey
decrypt
implementationBigUint
to return owned versions