comparison libfaim/md5.c @ 889:e1da6a6ec42b

[gaim-migrate @ 899] Oscar works again committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 12 Sep 2000 20:21:36 +0000
parents 58a6e6e26695
children 3fe5799b7823
comparison
equal deleted inserted replaced
888:38ffd1faa31a 889:e1da6a6ec42b
19 19
20 L. Peter Deutsch 20 L. Peter Deutsch
21 ghost@aladdin.com 21 ghost@aladdin.com
22 22
23 */ 23 */
24 /*$Id: md5.c 751 2000-08-22 23:38:47Z warmenhoven $ */ 24 /*$Id: md5.c 899 2000-09-12 20:21:36Z warmenhoven $ */
25 /* 25 /*
26 Independent implementation of MD5 (RFC 1321). 26 Independent implementation of MD5 (RFC 1321).
27 27
28 This code implements the MD5 Algorithm defined in RFC 1321. 28 This code implements the MD5 Algorithm defined in RFC 1321.
29 It is derived directly from the text of the RFC and not from the 29 It is derived directly from the text of the RFC and not from the
37 1999-10-18 lpd Fixed typo in header comment (ansi2knr rather than md5). 37 1999-10-18 lpd Fixed typo in header comment (ansi2knr rather than md5).
38 1999-05-03 lpd Original version. 38 1999-05-03 lpd Original version.
39 */ 39 */
40 40
41 #include "md5.h" 41 #include "md5.h"
42 #include <string.h>
42 43
43 #ifdef TEST 44 #ifdef TEST
44 /* 45 /*
45 * Compile with -DTEST to create a self-contained executable test program. 46 * Compile with -DTEST to create a self-contained executable test program.
46 * The test program should print out the same values as given in section 47 * The test program should print out the same values as given in section