diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-07-29 15:50:30 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-07-29 22:40:44 +0200 |
commit | fe31cf5b83383cbc02f5bc31411367c0128f2df6 (patch) | |
tree | b43bf3351bf30671973ae39b7dc756568168e947 /src/Volume | |
parent | 2389561406cb9e498008f884bed36e6e9d78ea80 (diff) | |
download | VeraCrypt-fe31cf5b83383cbc02f5bc31411367c0128f2df6.tar.gz VeraCrypt-fe31cf5b83383cbc02f5bc31411367c0128f2df6.zip |
Crypto: Use Hyper-V AES-NI detection workaround when displaying AES hardware availability in GUI.
Diffstat (limited to 'src/Volume')
-rw-r--r-- | src/Volume/Cipher.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Volume/Cipher.cpp b/src/Volume/Cipher.cpp index 743ef34c..a90b3c46 100644 --- a/src/Volume/Cipher.cpp +++ b/src/Volume/Cipher.cpp @@ -19,6 +19,7 @@ #ifdef TC_AES_HW_CPU # include "Crypto/Aes_hw_cpu.h" +# include "Crypto/cpu.h" #endif namespace VeraCrypt @@ -181,7 +182,7 @@ namespace VeraCrypt if (!stateValid) { - state = is_aes_hw_cpu_supported() ? true : false; + state = g_hasAESNI ? true : false; stateValid = true; } return state && HwSupportEnabled; |