1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 02:58:02 -06:00

Windows Bootloader: fix compilation error following Twofish code changes.

This commit is contained in:
Mounir IDRASSI
2016-12-07 00:26:33 +01:00
parent e3af024e5b
commit f10e26fc89

View File

@@ -949,7 +949,7 @@ static u4byte mds_rem(u4byte p0, u4byte p1)
/* initialise the key schedule from the user supplied key */ /* initialise the key schedule from the user supplied key */
u4byte *twofish_set_key(TwofishInstance *instance, const u4byte in_key[]) void twofish_set_key(TwofishInstance *instance, const u4byte in_key[])
{ u4byte i, a, b, me_key[4], mo_key[4]; { u4byte i, a, b, me_key[4], mo_key[4];
u4byte *l_key, *s_key; u4byte *l_key, *s_key;
@@ -990,8 +990,6 @@ u4byte *twofish_set_key(TwofishInstance *instance, const u4byte in_key[])
#ifdef MK_TABLE #ifdef MK_TABLE
gen_mk_tab(instance, s_key); gen_mk_tab(instance, s_key);
#endif #endif
return l_key;
}; };
#endif #endif