Skip to content
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

crypto/ed25519: add Secure Elliptic Curve Cryptography #47112

Open
xformerfhs opened this issue Jul 9, 2021 · 1 comment
Open

crypto/ed25519: add Secure Elliptic Curve Cryptography #47112

xformerfhs opened this issue Jul 9, 2021 · 1 comment
Labels
FeatureRequest NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Milestone

Comments

@xformerfhs
Copy link

Go implements elliptic curve cryptography in the "crypto/elliptic" package. However, this package only implements the NIST curves P-224, P-256, P-384 and P-521. All of these curves are have weaknesses.

There is an implementation of the secure elliptic curve "25519" in the package "crypto/ed25519". However, this implementation only supports signing and not encryption and decryption.

It should be possible to add at least Curve25519 for ECC encryption and decryption and I suggest to implement it.

@mknyszek mknyszek changed the title Add Secure Elliptic Curve Cryptography crypto/ed25519: add Secure Elliptic Curve Cryptography Jul 9, 2021
@mknyszek mknyszek added FeatureRequest NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. labels Jul 9, 2021
@mknyszek mknyszek added this to the Backlog milestone Jul 9, 2021
@mknyszek
Copy link
Contributor

mknyszek commented Jul 9, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
FeatureRequest NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Projects
None yet
Development

No branches or pull requests

3 participants
@mknyszek @xformerfhs and others