* md4.h: Shrink buffer size, now that we changed the type.
authorSimon Josefsson <simon@josefsson.org>
Mon, 24 Oct 2005 19:14:09 +0000 (19:14 +0000)
committerSimon Josefsson <simon@josefsson.org>
Mon, 24 Oct 2005 19:14:09 +0000 (19:14 +0000)
lib/ChangeLog
lib/md4.h

index 60f30a6..7df414b 100644 (file)
@@ -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
index b4f5955..0a54307 100644 (file)
--- 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];
 };