| Commit message (Expand) | Author | Age | Files | Lines |
* | Add explicit casts to double to quiet a clang warning. |  millert | 2020-10-19 | 1 | -2/+2 |
* | Use ferror() to check for write error, not the fflush() return value. |  millert | 2020-10-03 | 1 | -2/+3 |
* | freezero() is of no use here, the computed digest is not a secret. |  otto | 2019-05-18 | 1 | -2/+2 |
* | I am retiring my old email address; replace it with my OpenBSD one. |  millert | 2019-01-25 | 1 | -2/+2 |
* | fgetln(3) -> getline(3); from Lauri Tirkkonen; ok millert@ |  cheloha | 2018-09-07 | 1 | -21/+20 |
* | Use getrusage(2) for the built-in time trial instead of getttimeofday(2). |  millert | 2017-09-11 | 1 | -5/+7 |
* | obvious use for freezero() |  deraadt | 2017-05-22 | 1 | -3/+2 |
* | In -C mode, process all checksums that match the specified file(s), |  millert | 2017-04-26 | 1 | -6/+22 |
* | Move declaration of an 'i' inside the scope of its use. Which in |  krw | 2016-12-16 | 1 | -4/+3 |
* | Eliminate some gcc warnings about 'unused variables', mostly by |  krw | 2016-12-16 | 1 | -2/+5 |
* | add sha512/256 support to check that the libc code is right :) |  tedu | 2016-09-03 | 1 | -1/+12 |
* | Pull in <sys/time.h> for gettimeofday() |  guenther | 2016-08-26 | 1 | -1/+2 |
* | all of the update functions take a size_t. correct type and casts. |  tedu | 2016-07-29 | 1 | -18/+17 |
* | Remove NULL-check before free(). ok tb@ |  mmcc | 2015-12-09 | 1 | -3/+2 |
* | normalize the ordering of tame requests (particularily, "rpath wpath cpath", |  deraadt | 2015-10-10 | 1 | -2/+2 |
* | Change all tame callers to namechange to pledge(2). |  deraadt | 2015-10-09 | 1 | -5/+5 |
* | Repair tame() error check to be == -1 |  deraadt | 2015-10-04 | 1 | -2/+2 |
* | right at startup, this can tame "stdio cpath rpath wpath". after getopt |  deraadt | 2015-10-03 | 1 | -1/+7 |
* | cleanup of the SMALL hiding from Mathias Svensson |  deraadt | 2015-01-19 | 1 | -2/+4 |
* | Replace <sys/param.h> with <limits.h> and other less dirty headers where |  deraadt | 2015-01-16 | 1 | -5/+5 |
* | Replace all queue *_END macro calls except CIRCLEQ_END with NULL. |  doug | 2014-09-13 | 1 | -2/+2 |
* | Fix memory leak in digest_file() on ferror(). OK tedu@ lteo@ |  millert | 2014-06-19 | 1 | -1/+5 |
* | Ignore the -b option if cksum is called as-is (e.g. "cksum -b /bsd") |  lteo | 2014-03-26 | 1 | -2/+2 |
* | purge sum and sysvsum code. ok deraadt jmc lteo millert |  tedu | 2014-03-20 | 1 | -46/+5 |
* | remove insecure MD4 checksum algorithm; ok tedu@, man page ok jmc@ |  naddy | 2014-03-20 | 1 | -13/+1 |
* | When using the -C option, exit with an exit status of 1 if any of the |  lteo | 2014-03-07 | 1 | -14/+27 |
* | add -C to the man page, and adjust usage(); |  jmc | 2014-01-15 | 1 | -4/+4 |
* | Add support for a -C option. It works on a checklist like -c but only |  lteo | 2014-01-15 | 1 | -14/+35 |
* | Also move case 'c' into the #ifdef for a smaller binary. It will fall into |  deraadt | 2014-01-12 | 1 | -4/+4 |
* | use -DSHA2_ONLY to be more clear about what we are butchering |  deraadt | 2014-01-11 | 1 | -21/+21 |
* | catch up to the fact that md5/sha* got merged, and document -c consistently; |  jmc | 2014-01-10 | 1 | -8/+7 |
* | When using a checklist, print MISSING for non-existent files. |  lteo | 2014-01-10 | 1 | -2/+4 |
* | the -c option is really a mode change, incompatible with other options. |  tedu | 2014-01-10 | 1 | -3/+5 |
* | Fix wrapping of usage message for cksum. |  millert | 2014-01-08 | 1 | -3/+3 |
* | err() not errx() when fopen fails. |  millert | 2014-01-08 | 1 | -6/+6 |
* | Remove NHASHES, it is not needed and is incompatible with #ifdef SMALL. |  millert | 2014-01-08 | 1 | -37/+28 |
* | Remove pmode, fix hfile open mode, check return value when writing |  millert | 2014-01-08 | 1 | -38/+21 |
* | Add -DSMALL support to kill a lot of the unncecessary hashes and checksums |  deraadt | 2014-01-08 | 1 | -13/+54 |
* | Add support for -h hashfile. This is very useful with with -p, in a pipeline, |  deraadt | 2014-01-08 | 1 | -12/+21 |
* | install a link as sha512. simplify program internals; there are only |  tedu | 2013-12-23 | 1 | -20/+3 |
* | add unsigned char casts for specific calls to ctype.h macros. |  deraadt | 2013-11-21 | 1 | -3/+3 |
* | SHA-224 is to SHA-256 as SHA-384 is to SHA-512. It was added in a |  millert | 2013-04-15 | 1 | -2/+12 |
* | Return an exit code of 1 if the file cannot be opened (e.g. file does |  lteo | 2013-03-30 | 1 | -7/+8 |
* | replace sys/param.h with sys/types.h (and sometimes add limits.h if needed) |  deraadt | 2012-12-04 | 1 | -2/+6 |
* | fix memset sizeof, found by jsg. ok krw |  tedu | 2011-07-05 | 1 | -2/+3 |
* | Use a 32KB data buffer instead of a 1KB buffer. |  millert | 2010-10-27 | 1 | -3/+3 |
* | Use stdio when reading in the file to be checksummed. This can improve |  millert | 2010-10-25 | 1 | -26/+25 |
* | adapt to sha2(3) API changes; ok millert@ |  djm | 2008-09-06 | 1 | -16/+14 |
* | md5(1), sha1(1), rmd160(1), cksum(1) and sum(1) have different options; |  sobrado | 2008-07-29 | 1 | -12/+56 |
* | properly exit >0 when encountering bad md5 in cheklist |  chl | 2007-11-07 | 1 | -5/+5 |