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
extract_message & extract_signature functions doesn't work as expected and returns incorrect value.
extract_message should be replaced to
std::vector<uint8_t> Dilithium::extract_message(std::vector<uint8_t> &message_output) { return std::vector<uint8_t>(message_output.begin() + CRYPTO_BYTES, message_output.end()); }
extract_signature should be replaced to
std::vector<uint8_t> Dilithium::extract_signature(std::vector<uint8_t> &message_output) { return std::vector<uint8_t>(message_output.begin(), message_output.begin() + CRYPTO_BYTES); }
The text was updated successfully, but these errors were encountered:
cyyber
No branches or pull requests
extract_message & extract_signature functions doesn't work as expected and returns incorrect value.
extract_message should be replaced to
extract_signature should be replaced to
The text was updated successfully, but these errors were encountered: