From: Chris Hanson Date: Mon, 9 Jun 1997 21:17:48 +0000 (+0000) Subject: Fix typo. X-Git-Tag: 20090517-FFI~5148 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=6a9576788e9eaeeac600e111e0debfd083af19db;p=mit-scheme.git Fix typo. --- diff --git a/v7/src/microcode/prbfish.c b/v7/src/microcode/prbfish.c index 495b5928f..892df31ed 100644 --- a/v7/src/microcode/prbfish.c +++ b/v7/src/microcode/prbfish.c @@ -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. */ 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\ diff --git a/v7/src/microcode/prmd5.c b/v7/src/microcode/prmd5.c index 76cee9bb9..f5c9148c3 100644 --- a/v7/src/microcode/prmd5.c +++ b/v7/src/microcode/prmd5.c @@ -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 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.") {