1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-12 11:28:26 -06:00

Windows MBR bootloader: reduce required stack size for cascade bootloader by removing unnecessary field from Twofish structure in this case.

This commit is contained in:
Mounir IDRASSI
2017-07-19 01:06:32 +02:00
parent b37d732408
commit 3bdb9a32d7

View File

@@ -41,7 +41,9 @@ typedef struct
u4byte l_key[40];
#ifdef TC_MINIMIZE_CODE_SIZE
u4byte s_key[4];
#ifdef TC_WINDOWS_BOOT_TWOFISH
u4byte mk_tab[4 * 256];
#endif
#else
u4byte mk_tab[4][256];
#endif