Age | Commit message (Expand) | Author |
2015-04-24 | Use strtonum() instead of strtoul() when parsing uid/gid so we get | Todd C. Miller |
2015-03-15 | tzfile.h is an internal header that should never have been installed. | Todd C. Miller |
2015-02-05 | Include stdint.h, not limits.h to get SIZE_MAX. OK guenther@ | Todd C. Miller |
2015-01-16 | Move to the <limits.h> universe. | Theo de Raadt |
2015-01-15 | remove .Tn; from Jan Stary <hans at stare dot cz> | Ingo Schwarze |
2015-01-12 | rename blocks to words. bcrypt "blocks" are unrelated to blowfish blocks, | Ted Unangst |
2015-01-08 | declare a local version of MIN(), call it MINIMUM() | Theo de Raadt |
2015-01-08 | declare a local version of MIN(), call it MINIMUM() | Theo de Raadt |
2015-01-07 | Do not need sys/param.h | Theo de Raadt |
2014-12-30 | typo in comment: ouput => output | Damien Miller |
2014-12-25 | return ERANGE instead of ENOMEM, so callers can differentiate real oom | Sebastian Benoit |
2014-12-04 | use the actual function name in .Dt and NAME .Nm, not an alias; | Ingo Schwarze |
2014-11-25 | no first person in man pages. | Ted Unangst |
2014-09-27 | Explain why we deviate slightly from the PBKDF2 standard. | Doug Hogan |
2014-09-08 | obvious cases of missing .An; | Ingo Schwarze |
2014-08-25 | Delete secret or secret-derived data with explicit_bzero. | Doug Hogan |
2014-08-15 | Use O_CLOEXEC wherever we open a file and then call fcntl(F_SETFD, FD_CLOEXEC) | Philip Guenther |
2014-07-13 | include stdint.h for standard ints. from Jean-Philippe Ouellet | Ted Unangst |
2014-06-30 | sys/types.h rather than sys/param.h, where applicable. avoid overreach. | Theo de Raadt |
2014-06-30 | sort includes much more sensibly | Theo de Raadt |
2014-06-30 | limits.h rather than sys/param.h | Theo de Raadt |
2014-06-02 | merge ohash into 1 source file, then we can revisit next roadmap items. | Theo de Raadt |
2014-05-13 | zap trailing whitespace; | Jason McIntyre |
2014-05-12 | move the ohash functions into libutil by popular demand. | Marc Espie |
2014-04-08 | fix an error in the stride calculations. the math only works for multiples | Ted Unangst |
2014-01-31 | explicit_bzero where useful | Ted Unangst |
2014-01-21 | obvious .Pa fixes; found with mandocdb(8) | Ingo Schwarze |
2014-01-18 | Wrap long line. | Joel Sing |
2013-12-26 | constify data parameter in imsg_add() and imsg_compose() | Eric Faurot |
2013-12-22 | tweak comment | Ted Unangst |
2013-11-29 | fairly simple unsigned char casts for ctype | Theo de Raadt |
2013-11-13 | document that ibuf_write() and msgbuf_write() can now return EAGAIN | Sebastian Benoit |
2013-11-13 | original bug diagnosed by sthen: automatic retry in msgbuf_write on | Sebastian Benoit |
2013-10-01 | Fix FILE * leak in error path if fprintf fails. Found by and OK gilles@ | Todd C. Miller |
2013-08-17 | Use %lld and cast to (long long) when printing time_t values and atoll() | Philip Guenther |
2013-08-14 | some Bx/Ox conversion; | Jason McIntyre |
2013-08-13 | Switch time_t, ino_t, clock_t, and struct kevent's ident and data | Philip Guenther |
2013-08-06 | When writing a new record in pw_copy() print the uid and gid as | Todd C. Miller |
2013-07-29 | fix a colossal cockup due to pointer/array confusion. | Ted Unangst |
2013-06-05 | i copied .Fd just like everybody else. use .In | Ted Unangst |
2013-06-05 | use fancy .In macro for includes. from Jan Klemkow. ok jmc schwarze | Ted Unangst |
2013-06-04 | revert. check is < 1, not < 0. | Ted Unangst |
2013-06-04 | oops, rounds is unsigned now | Ted Unangst |
2013-06-04 | \-1; | Jason McIntyre |
2013-06-03 | not much use for sha1 .Xr | Ted Unangst |
2013-06-03 | Add bcrypt_pbkdf, a password based key derivation function using bcrypt. | Ted Unangst |
2013-05-21 | Fix pty descriptor leak if fork() fails. | Matthew Dempsky |
2013-04-29 | use FD_CLOEXEC instead of 1; from David Hill | Okan Demirmen |
2013-04-29 | use O_CLOEXEC with open() instead of open/fcntl; from David Hill | Okan Demirmen |
2013-02-01 | fix memleak in imsg_read() when hitting the fd reserve check | Gilles Chehade |