We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Extensions for X.509 certificate signing requests (CSR) can be marked as critical but mbedtls currently doesn't expose this functionality through it's API: https://github.com/ARMmbed/mbedtls/blob/development/include/mbedtls/x509_csr.h#L241 even though the underlying function exposes a flag for this purpose: https://github.com/ARMmbed/mbedtls/blob/development/library/x509write_csr.c#L88
critical
Justification - why does the library need this feature?
Some use cases for X.509 certificate signing requests need extensions that are marked as critical and the effort to implement this is minor.
Suggested enhancement
Expose the critical flag through the API by forwarding the parameter.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Description
Extensions for X.509 certificate signing requests (CSR) can be marked as
critical
but mbedtls currently doesn't expose this functionality through it's API: https://github.com/ARMmbed/mbedtls/blob/development/include/mbedtls/x509_csr.h#L241 even though the underlying function exposes a flag for this purpose: https://github.com/ARMmbed/mbedtls/blob/development/library/x509write_csr.c#L88Enhancement
Justification - why does the library need this feature?
Some use cases for X.509 certificate signing requests need extensions that are marked as critical and the effort to implement this is minor.
Suggested enhancement
Expose the
critical
flag through the API by forwarding the parameter.The text was updated successfully, but these errors were encountered: