-
Notifications
You must be signed in to change notification settings - Fork 404
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
Add Ed25519 support #91
Merged
Merged
Conversation
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
Ed25519 is a elliptic curve signature scheme that offers better security than ECDSA and DSA and good performance. It may be used for both user and host keys. OpenSSH key import and fuzzer are not supported yet. Initially inspired by Peter Szabo.
Closed
10 tasks
@mkj Any chance of a new release including ed25519 support? |
bantu
reviewed
May 31, 2020
ejiektpobehuk
added a commit
to ejiektpobehuk/openzfs-docs
that referenced
this pull request
Mar 7, 2021
ed25519 support: mkj/dropbear#91
ejiektpobehuk
added a commit
to ejiektpobehuk/openzfs-docs
that referenced
this pull request
Mar 9, 2021
Signed-off-by: Vlad Petrov <ejiek@mail.ru> ed25519 support: mkj/dropbear#91
ejiektpobehuk
added a commit
to ejiektpobehuk/openzfs-docs
that referenced
this pull request
Mar 9, 2021
ed25519 support: mkj/dropbear#91 Signed-off-by: Vlad Petrov <ejiek@mail.ru>
ejiektpobehuk
added a commit
to ejiektpobehuk/openzfs-docs
that referenced
this pull request
Mar 23, 2021
ed25519 support: mkj/dropbear#91 Signed-off-by: Vlad Petrov <ejiek@mail.ru>
ejiektpobehuk
added a commit
to ejiektpobehuk/openzfs-docs
that referenced
this pull request
Mar 23, 2021
ed25519 support: mkj/dropbear#91 Signed-off-by: Vlad Petrov <ejiek@mail.ru>
rlaager
pushed a commit
to openzfs/openzfs-docs
that referenced
this pull request
Mar 24, 2021
ed25519 support: mkj/dropbear#91 Closes #131 Signed-off-by: Vlad Petrov <ejiek@mail.ru> Signed-off-by: Maurice Zhou <ja@apvc.uk> [more concise wording; fix rst formatting] Signed-off-by: Richard Laager <rlaager@wiktel.com>
jwk404
pushed a commit
to openzfs/zfs
that referenced
this pull request
Nov 4, 2021
Note that Dropbear supports ed25519 keys since version 2020.79. See mkj/dropbear#91 Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by: John Kennedy <john.kennedy@delphix.com> Signed-off-by: Michael Franzl <michael@franzl.name> Closes #12715
Juan5212
approved these changes
Sep 29, 2024
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.
Initially inspired by @pts work and #75 pr, but made with general approach:
So far, DROPBEAR_CURVE25519 increases binary by ~2,5Kb on X86-64, DROPBEAR_ED25519 adds 7,5Kb more vs ~8Kb for DROPBEAR_CURVE25519 only.