changeset 6428:7f3d97f1f72d

* md4.h: Shrink buffer size, now that we changed the type.
author Simon Josefsson <simon@josefsson.org>
date Mon, 24 Oct 2005 19:14:09 +0000
parents 625dfb235865
children a5a7c3b2a730
files lib/ChangeLog lib/md4.h
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -1,3 +1,7 @@
+2005-10-24  Simon Josefsson  <jas@extundo.com>
+
+	* md4.h: Shrink buffer size, now that we changed the type.
+
 2005-10-22  Simon Josefsson  <jas@extundo.com>
 
 	* arcfour.h, arcfour.c: Use fixed size indices in the
--- a/lib/md4.h
+++ b/lib/md4.h
@@ -34,7 +34,7 @@
 
   uint32_t total[2];
   uint32_t buflen;
-  uint32_t buffer[128];
+  uint32_t buffer[32];
 };