We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Section 4 defines ML-KEM-768.KeyGenDerand as
ML-KEM-768.KeyGenDerand
seed[0:32] is used for z in line 1 of algorithm 15 from [MLKEM] and seed[32:64] is used for d in line 1 of algorithm 12.
However, the implementation in Appendix B.3 does the opposite
z = seed[32:] pk, sk2 = InnerKeyGen(seed[:32], params)
and the test vector in Appendix C passes when using seed[0:32] for d and seed[32:64] for z.
The text was updated successfully, but these errors were encountered:
Correct definition of ML-KEM-768.KeyGenDerand
ae7e913
Thanks to @FiloSottile for spotting. GH #14
Whoops, you're right. Fixed on main.
Sorry, something went wrong.
Thanks @bwesterb. Any chance you'll cut a new version soon? I also ran into this issue.
Released -02.
-02
No branches or pull requests
Section 4 defines
ML-KEM-768.KeyGenDerand
asHowever, the implementation in Appendix B.3 does the opposite
and the test vector in Appendix C passes when using seed[0:32] for d and seed[32:64] for z.
The text was updated successfully, but these errors were encountered: