mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-10 05:03:33 +01:00
Fix build error of UEFI bootloader caused by latest changes that introduced ChaCha20 and T1HA algorithms and which are not present nor used in UEFI bootloader
This commit is contained in:
parent
2410b69402
commit
6b10f88e40
@ -1217,7 +1217,7 @@ BOOL IsHwEncryptionEnabled ()
|
||||
|
||||
#endif // !TC_WINDOWS_BOOT
|
||||
|
||||
#ifndef TC_WINDOWS_BOOT
|
||||
#if !defined (TC_WINDOWS_BOOT) && !defined (_UEFI)
|
||||
|
||||
static BOOL CpuRngDisabled = TRUE;
|
||||
static BOOL RamEncryptionEnabled = FALSE;
|
||||
|
@ -208,10 +208,12 @@ typedef struct
|
||||
# include "GostCipher.h"
|
||||
# include "kuznyechik.h"
|
||||
# include "Camellia.h"
|
||||
#if !defined (_UEFI)
|
||||
# include "chachaRng.h"
|
||||
# ifdef _WIN64
|
||||
# include "t1ha.h"
|
||||
# endif
|
||||
#endif
|
||||
#else
|
||||
# include "CamelliaSmall.h"
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user