diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-10-08 19:02:50 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-10-17 18:40:26 +0200 |
commit | 5547a605bd6a1aaa3e17903f9192cc923042c088 (patch) | |
tree | 6bbba3d3e5fc03da44216576ad3dfe6d5ae58fe2 /src/Common/Crypto.h | |
parent | 0ac40097200985a64665ac8f7c0dd66ce5157988 (diff) | |
download | VeraCrypt-5547a605bd6a1aaa3e17903f9192cc923042c088.tar.gz VeraCrypt-5547a605bd6a1aaa3e17903f9192cc923042c088.zip |
Windows EFI: don't use optimized Serpent implementation for EFI bootloader because lack of C++ support in EDKII framework
Diffstat (limited to 'src/Common/Crypto.h')
-rw-r--r-- | src/Common/Crypto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Common/Crypto.h b/src/Common/Crypto.h index d654b0c4..8e8bace7 100644 --- a/src/Common/Crypto.h +++ b/src/Common/Crypto.h @@ -193,7 +193,7 @@ typedef struct #endif #include "Aes_hw_cpu.h" -#if !defined (TC_WINDOWS_BOOT) +#if !defined (TC_WINDOWS_BOOT) && !defined (_UEFI) # include "SerpentFast.h" #else # include "Serpent.h" |