-
Notifications
You must be signed in to change notification settings - Fork 55
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
RIPEMD160 is now available by default since OpenSSL 3.0.7. #2094
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #2094 +/- ##
=======================================
Coverage 83.81% 83.81%
=======================================
Files 161 161
Lines 32395 32405 +10
=======================================
+ Hits 27151 27161 +10
Misses 5244 5244
☔ View full report in Codecov by Sentry. |
@antonsviridenko don't we need a specific check to the OpenSSL engine to see if RIPEMD160 is included / available? |
@ronaldtse these checks are already implemented in #1883 |
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.
Thank you @antonsviridenko !
@antonsviridenko Changes from #1883 doesn't check whether specific algo is included into the default or legacy crypto provider. So for this case we should check in code for OpenSSL version >= 3.0.7, using the |
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.
We should check for OpenSSL version, please see my comment.
46b66c6
to
b42cff8
Compare
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.
LGTM, thanks!
@antonsviridenko Feel free to merge once CI is all green. |
Don't know what's wrong with nix. |
Looks like we need to bump the action version to v22: cachix/install-nix-action#183 (comment) |
@antonsviridenko CI is all green now. |
Closes #1980