-
Notifications
You must be signed in to change notification settings - Fork 15
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
Kyber spec. #15
Kyber spec. #15
Conversation
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.
Thanks!
Looks pretty good already. I added some thoughts.
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.
Thanks, looks pretty good already.
I left some comments inline and there are some general things
- Run
cargo fmt
on the code - add .gitignore for Cargo.lock and target
- The hax issue after formatting are because the modules are resorted. This shouldn't happen but is a known bug. Add empty lines between the module declarations in
lib.rs
. Then you should be fine. - Error handling should be done consistently. Introduce an error enum or use
u8
with error codes and onlyunwrap
when you are certain that the call can't error. Each of these cases will need a proof.
…tests and comments).
No description provided.