Skip to content
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

shake.h not compatible for the NaCl GCC compiler #820

Closed
asbai opened this issue Mar 23, 2019 · 1 comment
Closed

shake.h not compatible for the NaCl GCC compiler #820

asbai opened this issue Mar 23, 2019 · 1 comment

Comments

@asbai
Copy link
Contributor

asbai commented Mar 23, 2019

crypto++ 8.1: shake.h

The Google Native Client compiler complain something like: "SHACK128: there is no field named SHAKE_Final", we must use the full template name to fix it:

// ...
SHAKE128(unsigned int outputSize) : SHAKE_Final<128>(outputSize) {} // NaCl compiler fix
// ...
SHAKE256(unsigned int outputSize) : SHAKE_Final<256>(outputSize) {} // NaCl compiler fix
@noloader
Copy link
Collaborator

noloader commented Mar 24, 2019

Also see Issue 818 and Commit fc3b16e3a39d.

@noloader noloader changed the title shake.h not compatible for the NaCl cimpiler (gcc) shake.h not compatible for the NaCl GCC compiler Dec 20, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants