summaryrefslogtreecommitdiff
path: root/lib/sha.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-09-17 13:02:43 +0000
committerJim Meyering <jim@meyering.net>2000-09-17 13:02:43 +0000
commiteccfa6b591ec0fe77ec50ab46b086be90d31b16d (patch)
treefd0b9cca58808661cc511ff47f42c515770faaad /lib/sha.c
parent1778e4177387676af15afea3c992e95cfb3cc466 (diff)
downloadcoreutils-eccfa6b591ec0fe77ec50ab46b086be90d31b16d.tar.xz
shrink tmp array length from 80 to 16.
Diffstat (limited to 'lib/sha.c')
-rw-r--r--lib/sha.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sha.c b/lib/sha.c
index f6969a608..60260ac50 100644
--- a/lib/sha.c
+++ b/lib/sha.c
@@ -249,7 +249,7 @@ sha_process_block (const void *buffer, size_t len, struct sha_ctx *ctx)
const md5_uint32 *words = buffer;
size_t nwords = len / sizeof (md5_uint32);
const md5_uint32 *endp = words + nwords;
- md5_uint32 x[80];
+ md5_uint32 x[16];
md5_uint32 a = ctx->A;
md5_uint32 b = ctx->B;
md5_uint32 c = ctx->C;