-
-
Notifications
You must be signed in to change notification settings - Fork 952
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
Is it possible to build Veracrypt without AES_NI? #892
Comments
Hi @gktrk, Passing So, what is the issue you are encountering with |
…onment variable DISABLE_AESNI to 1 during build or passing NOAESNI=1 to make command This comes following Github issue #892 and which should be solved thanks to this.
I pushed a commit (d417b28) that enables to completely remove AESNI support from generated VeraCrypt binary. As you can see in the commit, when this variable is defined to 1, we set This change will be included in version 1.25.8 that should be released tomorrow. |
I put
I applied your patch and passed |
Version 1.25.9 has been released and it contains the change mentioned earlier. |
Hi,
Is it possible to build Veracrypt without AES_NI support for old Intel CPUs? Putting
-mno-aes
inCFLAGS
breaks the build as mentioned in this bug. Passing-DCRYPTOPP_DISABLE_AESNI
so thatCRYPTOPP_BOOL_AESNI_INTRINSICS_AVAILABLE
is set to 0 doesn't seem to help either. What's the proper build flag to pass such that-mno-aes
is honored?Thanks,
The text was updated successfully, but these errors were encountered: