summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYueHaibing <yuehaibing@huawei.com>2020-02-21 21:55:15 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2020-02-28 08:43:21 +0800
commit29c8311588108311c39b03bbe15b5a0e7c028896 (patch)
tree2195d4b97bd7f6d088fa7a54e094035e62b234dd
parente6bb3b52c9de9630b3e622aada1290fc7c2dcb28 (diff)
downloadlinux-crypto-29c8311588108311c39b03bbe15b5a0e7c028896.tar.gz
linux-crypto-29c8311588108311c39b03bbe15b5a0e7c028896.zip
crypto: md5 - remove unused macros
crypto/md5.c:26:0: warning: macro "MD5_DIGEST_WORDS" is not used [-Wunused-macros] crypto/md5.c:27:0: warning: macro "MD5_MESSAGE_BYTES" is not used [-Wunused-macros] They are never used since commit 4fcdd352ca5d ("md5: remove from lib and only live in crypto"). Signed-off-by: YueHaibing <yuehaibing@huawei.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r--crypto/md5.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/crypto/md5.c b/crypto/md5.c
index 22dc60bc..72c0c46f 100644
--- a/crypto/md5.c
+++ b/crypto/md5.c
@@ -23,9 +23,6 @@
#include <linux/types.h>
#include <asm/byteorder.h>
-#define MD5_DIGEST_WORDS 4
-#define MD5_MESSAGE_BYTES 64
-
const u8 md5_zero_message_hash[MD5_DIGEST_SIZE] = {
0xd4, 0x1d, 0x8c, 0xd9, 0x8f, 0x00, 0xb2, 0x04,
0xe9, 0x80, 0x09, 0x98, 0xec, 0xf8, 0x42, 0x7e,