-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Evp pkey nokex #453
Closed
Closed
Evp pkey nokex #453
Changes from 20 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
c56e886
Applying Fedora patch openssh-9.3p1-merged-openssl-evp.patch
beldmit 760a5da
Applying Fedora patch openssh-9.0p1-evp-fips-dh.patch
beldmit a09be89
Applying Fedora patch openssh-9.0p1-evp-fips-ecdh.patch
beldmit 0b732c0
Using EVP_PKEY instead of RSA/EC_KEY in sshkey
beldmit c2d5735
Useless variables
beldmit 9d7a11e
Build --without-openssl
beldmit f5d8d0e
Make DH/ECDH KEX buildable on RHEL8
beldmit 723ede2
Buildable on RHEL 8. Passing tests on RHEL 9.
beldmit af8978a
Adjust tests for OpenSSL 1.1.1
beldmit 3e395c1
Revert KEX rewriting
beldmit a2960c6
Remove DSS changes
beldmit eb330fd
Reduce diff, avoid extra function renaming
beldmit 4a19faa
Attempt to fix tests against OpenSSL <= 3.0.7
beldmit faf7296
Attempt to fix no-ecc
beldmit dfc0055
Fix gcc-11 -Werror, partially
beldmit 5c69e3e
BoringSSL compatibility
beldmit 0aa9381
Various warning fixes
beldmit 2c2ad17
RSA type check
beldmit 5b36041
Dropme! Temporary unbreak interop tests
beldmit 97b792d
We don't use these functions
beldmit 6daa8e2
Try to shrink the pubkey dump code
beldmit File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
So (this comment applies to all of the bag of ifdefs like this)
This define should not be used in this code like this. It precludes libressl from ever providing a compatible API
since both packages define OPENSSL_VERSION_NUMBER - Unless when providing 3.0 API you would prefer that we again jump the shark and sit on 0x40000000L or greater to get around this sort of ifdef mathemagics.
again, I reiterate this is doing too much at once and should just concentrate on the compatible to 1.1.1. EVP_PKEY changes, but if a define for 3.0 is to be used, please make it a define for OPENSSL 3.0 not numeric magic like this.