-
Notifications
You must be signed in to change notification settings - Fork 199
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
Added checks for PRNG generated values #552
Conversation
demo/test.c
Outdated
DO(mp_rand(&a, i)); | ||
if (mp_cmp_d(&a,2u) == MP_LT) { | ||
continue; | ||
} |
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.
Would it maybe make sense to do the following instead?
DO(mp_rand(&a, i)); | |
if (mp_cmp_d(&a,2u) == MP_LT) { | |
continue; | |
} | |
do { | |
DO(mp_rand(&a, i)); | |
} while (mp_cmp_d(&a,2u) == MP_LT); |
demo/test.c
Outdated
DO(mp_rand(&base, j)); | ||
if (mp_cmp_d(&base,2u) == MP_LT) { | ||
continue; | ||
} |
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.
Same here
Why are you always have to be right? ;-) Rebase into single commit? |
Yes please! Thanks |
a9cdaa8
to
ecfbf6f
Compare
As mentioned in #551 : randomly generated values for restricted input must be checked before use.