From 5dd805b54cb5df3f145d5fd9383491205c83ae5b Mon Sep 17 00:00:00 2001 From: "Pierre R. Mai" Date: Thu, 15 Nov 2001 00:16:07 +0000 Subject: [PATCH] Added ID comment, and fixed doc-string for finalize-md5-state. --- src/md5.lisp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/md5.lisp b/src/md5.lisp index 7e5b20f..d1dcc9b 100644 --- a/src/md5.lisp +++ b/src/md5.lisp @@ -5,6 +5,8 @@ ;;;; cmucl-help mailing-list hosted at cons.org, in November 2001 and ;;;; has been placed into the public domain. ;;;; +;;;; $Id$ +;;;; ;;;; While the implementation should work on all conforming Common ;;;; Lisp implementations, it has only been optimized for CMU CL, ;;;; where it achieved comparable performance to the standard md5sum @@ -445,7 +447,7 @@ by processing any remaining input in its buffer, with suitable padding and appended bit-length, as specified by the MD5 standard. The resulting MD5 message-digest is returned as an array of sixteen -x(unsigned-byte 8) values. Calling `update-md5-state' after a call to +(unsigned-byte 8) values. Calling `update-md5-state' after a call to `finalize-md5-state' results in unspecified behaviour." (declare (type md5-state state) (optimize (speed 3) #+cmu (safety 0) (space 0) (debug 0))