1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2026-06-20 03:25:03 -05:00

Windows bootloader: Add EFI DCS guard for Argon2 support

We don't support yet Argon2 for EFI booloader build
This commit is contained in:
Mounir IDRASSI
2026-04-17 16:03:42 +09:00
parent 9ae7cb1914
commit da2198831f
5 changed files with 32 additions and 4 deletions
+4
View File
@@ -55,7 +55,9 @@ enum
SHA256,
BLAKE2S,
STREEBOG,
#ifndef VC_DCS_DISABLE_ARGON2
ARGON2,
#endif
HASH_ENUM_END_ID
};
@@ -204,8 +206,10 @@ typedef struct
#ifndef TC_WINDOWS_BOOT
# include "Sha2.h"
# include "Whirlpool.h"
#ifndef VC_DCS_DISABLE_ARGON2
# include "argon2.h"
# include "Crypto/Argon2/src/blake2/blake2b.h"
#endif
# include "Streebog.h"
# include "kuznyechik.h"
# include "Camellia.h"