From a5f33a9b2e79819acb9315c928e896ec0fe80cb1 Mon Sep 17 00:00:00 2001 From: Simon Josefsson Date: Mon, 24 Oct 2005 19:14:09 +0000 Subject: [PATCH] * md4.h: Shrink buffer size, now that we changed the type. --- lib/ChangeLog | 4 ++++ lib/md4.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/ChangeLog b/lib/ChangeLog index 60f30a6a7..7df414b2e 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,7 @@ +2005-10-24 Simon Josefsson + + * md4.h: Shrink buffer size, now that we changed the type. + 2005-10-22 Simon Josefsson * arcfour.h, arcfour.c: Use fixed size indices in the diff --git a/lib/md4.h b/lib/md4.h index b4f5955fc..0a54307b4 100644 --- a/lib/md4.h +++ b/lib/md4.h @@ -34,7 +34,7 @@ struct md4_ctx uint32_t total[2]; uint32_t buflen; - uint32_t buffer[128]; + uint32_t buffer[32]; }; -- 2.11.0