Constify X509* usage where needed and use ASN1_STRING accessors#5239
Merged
matejk merged 2 commits intopocoproject:mainfrom Mar 11, 2026
Merged
Constify X509* usage where needed and use ASN1_STRING accessors#5239matejk merged 2 commits intopocoproject:mainfrom
matejk merged 2 commits intopocoproject:mainfrom
Conversation
Contributor
|
Nice, clean PR — the changes are correct, minimal, and backward-compatible with OpenSSL >= 1.1.0. One suggestion: in std::string dateTime(reinterpret_cast<const char*>(ASN1_STRING_get0_data(certTime)));It would be more robust to use the length accessor as well: std::string dateTime(reinterpret_cast<const char*>(ASN1_STRING_get0_data(certTime)), ASN1_STRING_length(certTime));This is a pre-existing issue (the old code did the same with |
Contributor
Author
|
That should be fixed now for safety. Thanks for looking it over! |
matejk
pushed a commit
that referenced
this pull request
Mar 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes: #5237
OpenSSL is moving most X509 pointers to const, this makes handlers compatible with const pointers. OpenSSL has also begun removing direct access to ASN1_STRING members, so we use the accessor functions instead of direct struct members.