summaryrefslogtreecommitdiffhomepage
path: root/src/ciphers/twofish/twofish.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ciphers/twofish/twofish.c')
-rw-r--r--src/ciphers/twofish/twofish.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ciphers/twofish/twofish.c b/src/ciphers/twofish/twofish.c
index 61aa950..f147bab 100644
--- a/src/ciphers/twofish/twofish.c
+++ b/src/ciphers/twofish/twofish.c
@@ -43,12 +43,14 @@ const struct ltc_cipher_descriptor twofish_desc =
#define RS_POLY 0x14D
/* The 4x4 MDS Linear Transform */
+#if 0
static const unsigned char MDS[4][4] = {
{ 0x01, 0xEF, 0x5B, 0x5B },
{ 0x5B, 0xEF, 0xEF, 0x01 },
{ 0xEF, 0x5B, 0x01, 0xEF },
{ 0xEF, 0x01, 0xEF, 0x5B }
};
+#endif
/* The 4x8 RS Linear Transform */
static const unsigned char RS[4][8] = {