From cb6f976b0dd871866a0a28ee83a146a46cf0bad2 Mon Sep 17 00:00:00 2001 From: Adam Mackler Date: Tue, 27 Jan 2015 19:22:42 -0500 Subject: [PATCH] Remove unused static variable sha384_initial_hash_value. --- sha2.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/sha2.c b/sha2.c index 3e21cdaa9..74c67daf8 100644 --- a/sha2.c +++ b/sha2.c @@ -256,18 +256,6 @@ static const sha2_word64 K512[80] = { 0x5fcb6fab3ad6faecULL, 0x6c44198c4a475817ULL }; -/* Initial hash value H for SHA-384 */ -static const sha2_word64 sha384_initial_hash_value[8] = { - 0xcbbb9d5dc1059ed8ULL, - 0x629a292a367cd507ULL, - 0x9159015a3070dd17ULL, - 0x152fecd8f70e5939ULL, - 0x67332667ffc00b31ULL, - 0x8eb44a8768581511ULL, - 0xdb0c2e0d64f98fa7ULL, - 0x47b5481dbefa4fa4ULL -}; - /* Initial hash value H for SHA-512 */ static const sha2_word64 sha512_initial_hash_value[8] = { 0x6a09e667f3bcc908ULL,