changeset 10127:fc6baf7d0ac0

sha512.c: fix typo in comment * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
author Jim Meyering <meyering@redhat.com>
date Mon, 26 May 2008 16:28:22 +0200
parents 66d52359961e
children 92a80b637ea1
files ChangeLog lib/sha512.c
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun May 25 13:44:20 2008 +0200
+++ b/ChangeLog	Mon May 26 16:28:22 2008 +0200
@@ -1,3 +1,8 @@
+2008-05-26  Jim Meyering  <meyering@redhat.com>
+
+	sha512.c: fix typo in comment
+	* lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
+
 2008-05-25  Bruno Haible  <bruno@clisp.org>
 
 	* lib/set-mode-acl.c: Renamed from lib/acl.c.
--- a/lib/sha512.c	Sun May 25 13:44:20 2008 +0200
+++ b/lib/sha512.c	Mon May 26 16:28:22 2008 +0200
@@ -141,7 +141,7 @@
   if (u64lt (ctx->total[0], u64lo (bytes)))
     ctx->total[1] = u64plus (ctx->total[1], u64lo (1));
 
-  /* Put the 64-bit file length in *bits* at the end of the buffer.  */
+  /* Put the 128-bit file length in *bits* at the end of the buffer.  */
   ctx->buffer[size - 2] = SWAP (u64or (u64shl (ctx->total[1], 3),
 				       u64shr (ctx->total[0], 61)));
   ctx->buffer[size - 1] = SWAP (u64shl (ctx->total[0], 3));