Crypto build cleanup: remove INTERNAL_MD4

In addition, rename md4.c to md4-internal.c to match in style with
SHA-1 conditionally built internal implementation.
This commit is contained in:
Johannes Berg 2009-07-28 21:27:02 +03:00 committed by Jouni Malinen
parent 598a792d8c
commit bd4e28950d
8 changed files with 9 additions and 24 deletions

View file

@ -17,9 +17,6 @@
#include "common.h"
#include "crypto.h"
#ifdef INTERNAL_MD4
#define MD4_BLOCK_LENGTH 64
#define MD4_DIGEST_LENGTH 16
@ -278,5 +275,3 @@ MD4Transform(u32 state[4], const u8 block[MD4_BLOCK_LENGTH])
state[3] += d;
}
/* ===== end - public domain MD4 implementation ===== */
#endif /* INTERNAL_MD4 */