comparison src/fns.c @ 34053:e6aa821abe60

(Fmd5): Doc fix.
author Gerd Moellmann <gerd@gnu.org>
date Thu, 30 Nov 2000 14:03:30 +0000
parents cc03857ce950
children 89fd59727c6c
comparison
equal deleted inserted replaced
34052:58140badd6d2 34053:e6aa821abe60
4969 4969
4970 4970
4971 #include "md5.h" 4971 #include "md5.h"
4972 4972
4973 DEFUN ("md5", Fmd5, Smd5, 1, 5, 0, 4973 DEFUN ("md5", Fmd5, Smd5, 1, 5, 0,
4974 "Return MD5 hash of OBJECT, a buffer or string.\n\ 4974 "Return MD5 message digest of OBJECT, a buffer or string.\n\
4975 \n\ 4975 \n\
4976 The two optional arguments START and END are character positions;\n\ 4976 The two optional arguments START and END are character positions\n\
4977 they can be in either order.\n\ 4977 specifying for which part of OBJECT the message digest should be computed.\n\
4978 If nil or omitted, the digest is computed for the whole OBJECT.\n\
4978 \n\ 4979 \n\
4979 The third optional argument CODING-SYSTEM specify coding system text\n\ 4980 Third optional argument CODING-SYSTEM specifies the coding system text\n\
4980 should be converted to before computing digest. If nil, uses the\n\ 4981 should be converted to before computing the digest. If nil or omitted,\n\
4981 current format or guesses.\n\ 4982 the current format is used or a format is guessed.\n\
4982 \n\ 4983 \n\
4983 Fourth optional argument NOERROR doesn't do anything (for XEmacs\n\ 4984 Fourth optional argument NOERROR is there for compatability with other\n\
4984 compatibility).") 4985 Emacsen and is ignored.")
4985 (object, start, end, coding_system, noerror) 4986 (object, start, end, coding_system, noerror)
4986 Lisp_Object object, start, end, coding_system, noerror; 4987 Lisp_Object object, start, end, coding_system, noerror;
4987 { 4988 {
4988 unsigned char digest[16]; 4989 unsigned char digest[16];
4989 unsigned char value[33]; 4990 unsigned char value[33];