diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-03-09 17:35:19 +0100 |
---|---|---|
committer | rodarima <rodarima@gmail.com> | 2024-03-09 18:43:51 +0100 |
commit | 4c56214b8c2e130d3709bdca2513aef20b7b0fab (patch) | |
tree | b8cd0c6dafb5850ba116221f6f39a62e84983aa5 /src/md5.c | |
parent | bde09c45adf0daf252fafbaf87683d3ed7eaab07 (diff) |
Use Doxygen comments for C files
Diffstat (limited to 'src/md5.c')
-rw-r--r-- | src/md5.c | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -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 @@ <ghost@aladdin.com>. 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 <string.h> 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 <stdio.h> in test program. - 2000-07-03 lpd Patched to eliminate warnings about "constant is + - 2002-02-21 lpd Added missing #include <stdio.h> 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" |