--- truecrypt/common/crypto.c 2018/04/24 16:39:57 1.1.1.3 +++ truecrypt/common/crypto.c 2018/04/24 16:40:48 1.1.1.4 @@ -57,8 +57,6 @@ get_key_size (int cipher) { if (cipher == DES56) return 7; - else if (cipher == IDEA) - return 16; else if (cipher == BLOWFISH) return 56; else if (cipher == AES) @@ -80,8 +78,6 @@ get_cipher_name (int cipher) return "Blowfish"; if (cipher == AES) return "AES"; - else if (cipher == IDEA) - return "IDEA"; else if (cipher == DES56) return "DES"; else if (cipher == TRIPLEDES)