-
Notifications
You must be signed in to change notification settings - Fork 862
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
Fix bug in ParseCRL_Extensions #8587
base: master
Are you sure you want to change the base?
Conversation
Using a mp_int is heavy weight for a 20 byte number - can allocate up to 1KB for storage of 20 bytes. |
Jenkins retest this please |
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.
Looks good. Still on fence about backwards compatibility, but okay for now. Over to @SparkiDev
(DIGIT_BIT * i); | ||
} | ||
} | ||
if (ret == 0 && mp_toradix(m, (char*)dcrl->crlNumber, MP_RADIX_DEC) |
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.
Don't want the integer value - use hex from DER.
If we are printing and want the integer value then use an mp_int.
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 don't see the need for the mp_int.
Explain what is for.
550ca10
to
70a54ff
Compare
Description
CRL_NUMBER_OID
case inParseCRL_Extensions()
NO_BIG_INT
is definedFixes #8574 and wolfSSL/wolfCLU#174
Also fixes zd#19611
Testing
Tested using wolfCLU with the CRL files provided in #8574 and wolfSSL/wolfCLU#174
Build wolfSSL with
./configure --enable-wolfclu --enable-crl
Then run wolfCLU with
./wolfssl crl -in crl_extention_test.pem -text
Checklist