-
-
Notifications
You must be signed in to change notification settings - Fork 52
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
ed25519ph/HashEdDSA support? #63
Comments
What's your use case? |
Like ECDSA, we use systems that sign digests. ES224, ES256, ES384, ES512 work well with this. PureEdDSA prefers the original message. It would be awesome to have Ed25519ph that conforms to same design pattern as ECDSA. I would also add, the latest FIPS draft is requiring ed25519ph support.
G̶o̶ ̶1̶.̶1̶9̶ Go 1.20 will implemented this: golang/go#31804. PyNaCl is also working on high level support. |
How should the ph api look like to be simple? |
As far as API, how about Looking at this line: export { getPublicKey, sign, verify, utils, CURVE, Point, ExtendedPoint, RistrettoPoint }; The exported would become: export { getPublicKey, sign, verify, signDigest, verifyDigest, utils, CURVE, Point, ExtendedPoint, RistrettoPoint }; Edit: I was also thinking "signPH" and "verifyPH" might be more descriptive for those already familiar with Ed. |
The text was updated successfully, but these errors were encountered: