-
Notifications
You must be signed in to change notification settings - Fork 900
Rust wrapper: add wolfssl::wolfcrypt::ed448 module #9379
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
Conversation
gasbytes
left a comment
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, just some minor changes mainly in the documentation.
|
Does this code differ much from ed25519.rs? |
No it is very similar. Each function calls a different C API function, but the logic is pretty much the same for each. ed25519 has 'ctx' versions of sign_msg and verify_msg which are not present in ed448 because the main sign_msg and verify_msg functions take a context pointer. |
Description
Rust wrapper: add wolfssl::wolfcrypt::ed448 module
Testing
Unit tests.
Checklist