summaryrefslogtreecommitdiff
path: root/bin/md5
AgeCommit message (Collapse)Author
2006-11-19WARNING/BUGS -> CAVEATS; ok millertJason McIntyre
2006-11-17`<' -> \*(LtJason McIntyre
2006-11-17discourage .Tn;Jason McIntyre
2006-11-17.Ex these pages; ok millertJason McIntyre
2006-11-17simplify synopsis and usage(); ok millertJason McIntyre
2006-11-16Add -r and -q options similar to what is supported by FreeBSD's md5Todd C. Miller
OK deraadt@ ckuethe@
2006-11-10Accept upper and lower case letters in a checksum, since this doesn'tTom Cosgrove
alter the value of the digest. Nor, for that matter, does case affect the name of the algorithm used. Partly from Matthew Clarke, clamat (at) telus (dot) net. ok djm@ millert@
2006-03-15Fix signed/unsigned comparisons by using size_tDavid Hill
Sprinkle some const ok ray@ jaredy@
2005-12-20Make "cksum -c" grok checklists generated with cksum, sum and sysvsum.Todd C. Miller
OK deraadt@
2005-08-17Exit unsuccessfully when comparing against a checklist file fails.Marco Pfatschbacher
OK markus@ millert@
2005-05-24-ansi means only expose ANSI interfaces which is not something we want...Todd C. Miller
2005-03-07more macro simplification;Jason McIntyre
2005-02-25avoid specifying which hash to use;Jason McIntyre
this after some discussion w/ otto; started by pr #4120, from andy isaacson;
2004-12-29Add support for multiple using algorithms. OK'd by several peopleTodd C. Miller
a while ago so get this out of my tree...
2004-12-10GNU md5sum uses tab not space to separate filename and hash. FixesTodd C. Miller
parsing of GNU-style checklist files for files with spaces in them. From Emil Mikulic; closes PR 4027
2004-08-24Note that collisions have been found for MD5, so SHA-1 is preferred.Tom Cosgrove
Also fix the reference to RFC 1321, which describes MD5 alone (not MD2 or MD4). ok jmc@, millert@
2004-05-16Tell reader to use cksum(1) to compute SHA-2 digests. ok millert@Otto Moerbeek
2004-05-1064 bit gcc whinesTheo de Raadt
2004-05-04sync usage w/ man pageTodd C. Miller
2004-05-04- simplify synopsesJason McIntyre
- correct macros - various grammatical fixes ok millert@
2004-05-04Add missing MLINK for sum(1), noticed by deraadt@Todd C. Miller
2004-05-02Add support for cksum (3 varieties), md4, sha256, sha384, and sha512.Todd C. Miller
Consequently, cksum moves becomes a link to md5 and moves to /bin. The cksum man page could use some polishing.
2004-04-28Use the FOO_DIGEST_LENGTH macrosTodd C. Miller
2004-03-03Extend "md5 -c" to parse the output of GNU md5sum.Todd C. Miller
Adapted from patches by Lawrence Teo and tedu@. OK tedu@
2003-07-21Fix typo: unsigned -> unsigned char; from Thorsten GlaserTodd C. Miller
2003-06-25fix lots of proto issuesTheo de Raadt
2003-06-17Sync with share/misc/license.template and add missing DARPA creditTodd C. Miller
where applicable.
2003-06-11ansification, art okTheo de Raadt
2003-06-03Use an ISC-tyle license for all my code; it is simpler and more permissive.Todd C. Miller
2003-04-28return from mainTheo de Raadt
2003-04-26this -Werror stuff is ... let me be polite... fucking garbageTheo de Raadt
2003-04-23strchr() should be strrchr(); zyrnixTodd C. Miller
2003-03-23Do not closed stdin; Andrey MatveevTodd C. Miller
2003-03-14tweaks;Jason McIntyre
echos -> echoes from millert@ ok millert@
2003-03-13Cast 3 to size_t to shut up stupid gcc on 64bit platforms.Todd C. Miller
2003-03-12Add -c option similar to GNU md5sum.Todd C. Miller
Original patch from zyrnix but significantly modified by me. deraadt@ OK
2003-02-19Back out documentation for (currently) non-existent -c option thatTodd C. Miller
got committed by accident in the license update.
2003-02-14Add a 2-clause BSD license. These files are based on the md5.1Todd C. Miller
from FreeBSD which says it is public domain so there should be no license conflict.
2003-01-14Report read() errors; noticed and OK by fgs@Todd C. Miller
2002-01-20Swap TEST_BLOCK_LEN and TEST_BLOCK_COUNT in benchmark printf.Camiel Dobbelaar
ok millert@
2001-10-29add RFC 3174 to SEE ALSO sectionTodd C. Miller
2001-09-06o) fix bogus .St usage;Mike Pechkin
millert@ ok
2001-09-06o) __progname aria;Mike Pechkin
millert@ ok.
2001-06-03Nope, that's not right either. Fix check for mutually exclusive args.Todd C. Miller
2001-06-03sync man page with new usage restrictionsTodd C. Miller
2001-06-03Obvious thinko: command line is wrong if it's too short, not too long.Marc Espie
2001-06-02Fix some typos and add missing test for string of 1 million a's.Todd C. Miller
2001-06-02New md5/sha1/rmd160 driver with a BSD copyright. Improvements:Todd C. Miller
o options that should be mutually exclusive are o time trial works reasonably when it finishes in < 1 sec o uses a function table instead of a bunch of globals
2000-11-09Change all option list specifications to ".Bl -tag -width Ds". Most manAaron Campbell
pages just needed their -width parameter tweaked to "Ds", which provides a nice width of 6 constant characters. For consistency more than anything.
2000-10-18Properly introduce options.Aaron Campbell