-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test(VDF): bench rsa vs class #37
Conversation
* WIP * clean * fix * change back to 10 tests
@omershlo I have refactored the H_g() for RSA, and setup() for class. However I am not quite happy about the codes, because now I need to pass |
tested via |
@omershlo I've also refactored RSA one now. The PR is ready, you can take a look again. |
…nto bench_rsa_class
BTW, I've got a few questions:
|
Hi, I see you made a bunch of commits, does it mean the PR is ready for another review ?
|
yes it's ready again. @omershlo |
I see you use M13 prime for the modulus. In RSA the modulus should be a bi-prime ( N = p*q for p,q 1024 bit primes) |
4847bd2
to
d58d270
Compare
So a 2048 bi-prime for N? What about using https://en.wikipedia.org/wiki/RSA_numbers#RSA-2048 here? |
Looks good. |
as discussed in #27