-
Notifications
You must be signed in to change notification settings - Fork 761
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
AES build errors #352
Comments
somebody? anybody? |
Hello, my guess would be to simply look at /usr/local/lib and /usr/lib and see if the library is there. Also use Open Hope this helps. |
ok thanks |
I feel the AES implementation APIs are not updated to reflect latest changes in the recent versions of library which include CKKS scheme as well. Will the AES implementation work for CKKS ciphertext as well?? |
I have found aes_compatible vertion:#343 .It does work. |
Your Contact: [email protected]
Your environment (OS/HW): Ubuntu 18.04, amd64
Detailed Description:
make in aes folder is failing with following error
error: ‘helib’ has not been declared
throw helib::InvalidArgument("Invalid key size: " + std::to_string(NN));
^~~~~
/home/imtiyazuddin/Ubuntu/HElib/src/aes/simpleAES.cpp:133:62: error: ‘to_string’ is not a member of ‘std’
throw helib::InvalidArgument("Invalid key size: " + std::to_string(NN));
^~~~~~~~~
src/aes/CMakeFiles/TEST_AES.dir/build.make:65: recipe for target 'src/aes/CMakeFiles/TEST_AES.dir/simpleAES.cpp.o' failed
make[2]: *** [src/aes/CMakeFiles/TEST_AES.dir/simpleAES.cpp.o] Error 1
CMakeFiles/Makefile2:143: recipe for target 'src/aes/CMakeFiles/TEST_AES.dir/all' failed
make[1]: *** [src/aes/CMakeFiles/TEST_AES.dir/all] Error 2
Makefile:132: recipe for target 'all' failed
make: *** [all] Error 2
The text was updated successfully, but these errors were encountered: