Fix typo.
authorChris Hanson <org/chris-hanson/cph>
Mon, 9 Jun 1997 21:17:48 +0000 (21:17 +0000)
committerChris Hanson <org/chris-hanson/cph>
Mon, 9 Jun 1997 21:17:48 +0000 (21:17 +0000)
v7/src/microcode/prbfish.c
v7/src/microcode/prmd5.c

index 495b5928f0728e0647976328d9493653c757885a..892df31ed51ed27f8c3fb97cd66e8dd972ebb560 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: prbfish.c,v 1.1 1997/06/09 07:43:36 cph Exp $
+$Id: prbfish.c,v 1.2 1997/06/09 21:17:48 cph Exp $
 
 Copyright (c) 1997 Massachusetts Institute of Technology
 
@@ -41,7 +41,7 @@ MIT in each case. */
 /* This interface uses the Blowfish library from SSLeay.  */
 \f
 DEFINE_PRIMITIVE ("BLOWFISH-SET-KEY", Prim_blowfish_set_key, 1, 1,
-  "(STRING)
+  "(STRING)\n\
 Generate a Blowfish key from STRING.\n\
 STRING must be 72 bytes or less in length.\n\
 For text-string keys, use MD5 on the text, and pass the digest here.")
@@ -112,7 +112,7 @@ Returned value is a string of the same length as INPUT.")
 }
 
 DEFINE_PRIMITIVE ("BLOWFISH-CFB64", Prim_blowfish_cfb64, 5, 5,
-  "(INPUT KEY INIT-VECTOR NUM ENCRYPT?)
+  "(INPUT KEY INIT-VECTOR NUM ENCRYPT?)\n\
 Apply Blowfish in Cipher FeedBack mode.\n\
 INPUT is an arbitrary string.\n\
 KEY is a Blowfish key.\n\
index 76cee9bb958235a6a8979aace2270751322add9c..f5c9148c388d70575a332fe4672ab725c2de83d7 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: prmd5.c,v 1.1 1997/06/09 07:43:23 cph Exp $
+$Id: prmd5.c,v 1.2 1997/06/09 21:17:11 cph Exp $
 
 Copyright (c) 1997 Massachusetts Institute of Technology
 
@@ -39,7 +39,7 @@ MIT in each case. */
 #include <md5.h>
 
 DEFINE_PRIMITIVE ("MD5", Prim_md5, 1, 1,
-  "(STRING)
+  "(STRING)\n\
 Generate an MD5 digest of string.\n\
 The digest is returned as a 16-byte string.")
 {