From 4c56214b8c2e130d3709bdca2513aef20b7b0fab Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Sat, 9 Mar 2024 17:35:19 +0100 Subject: Use Doxygen comments for C files --- src/md5.c | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'src/md5.c') diff --git a/src/md5.c b/src/md5.c index bd1ffb16..7b7d4e94 100644 --- a/src/md5.c +++ b/src/md5.c @@ -31,7 +31,8 @@ */ /* $Id: md5.c,v 1.6 2002/04/13 19:20:28 lpd Exp $ */ -/* +/** + @file Independent implementation of MD5 (RFC 1321). This code implements the MD5 Algorithm defined in RFC 1321, whose @@ -46,18 +47,18 @@ . Other authors are noted in the change history that follows (in reverse chronological order): - 2002-04-13 lpd Clarified derivation from RFC 1321; now handles byte order + - 2002-04-13 lpd Clarified derivation from RFC 1321; now handles byte order either statically or dynamically; added missing #include in library. - 2002-03-11 lpd Corrected argument list for main(), and added int return + - 2002-03-11 lpd Corrected argument list for main(), and added int return type, in test program and T value program. - 2002-02-21 lpd Added missing #include in test program. - 2000-07-03 lpd Patched to eliminate warnings about "constant is + - 2002-02-21 lpd Added missing #include in test program. + - 2000-07-03 lpd Patched to eliminate warnings about "constant is unsigned in ANSI C, signed in traditional"; made test program self-checking. - 1999-11-04 lpd Edited comments slightly for automatic TOC extraction. - 1999-10-18 lpd Fixed typo in header comment (ansi2knr rather than md5). - 1999-05-03 lpd Original version. + - 1999-11-04 lpd Edited comments slightly for automatic TOC extraction. + - 1999-10-18 lpd Fixed typo in header comment (ansi2knr rather than md5). + - 1999-05-03 lpd Original version. */ #include "md5.h" -- cgit v1.2.3