summaryrefslogtreecommitdiff
path: root/usr.bin/signify
AgeCommit message (Collapse)Author
2014-03-17quiet time is overTed Unangst
2014-03-17clean up after ourselves.Marc Espie
okay tedu@
2014-03-17simplify readmsg loopTed Unangst
2014-03-17tweak a few messagesTed Unangst
2014-03-17check memcmp return explicitlyTed Unangst
2014-03-17pull out the pubkey reading bitsTed Unangst
2014-03-17refactor and recombine verify functions.Ted Unangst
2014-03-17move fingerprint check into verifymsgTed Unangst
(stop printing fingerprints here; probably not that helpful)
2014-03-17clarify a variable or two; ok teduTheo de Raadt
2014-03-17have to fill in comment before we can use it.Ted Unangst
2014-03-16do filename check in the other place too. needs a refactorTed Unangst
2014-03-16resolve espie's complaints about appendall (maybe) by folding it intoTed Unangst
writeb64file. idea from deraadt
2014-03-16secretly document the signature comment public key name stuffTed Unangst
2014-03-16oops, forgot the err function here. noticed by Henri KemppainenTed Unangst
2014-03-16we want strncmp here to be safer. spotted by halex.Ted Unangst
2014-03-16grow buffer fasterTed Unangst
2014-03-16tweak path checks. now you can create keys named ......pubTed Unangst
by deraadt
2014-03-16prevent common(?) mistake. can't use a directory as a fileTed Unangst
2014-03-16check the inferred path is in /etc/signifyTed Unangst
2014-03-16start trusting the untrusted comment. (a little)Ted Unangst
embed the name of the verification key to save some typing
2014-03-07if message file is stdin, don't read passphrase from stdin, it won't work.Ted Unangst
too many features; this circus needs a lion tamer
2014-03-07allow reading input messages on a pipe. use at your own peril.Ted Unangst
2014-03-06allow password on stdin if it's not a tty. commonly requested.Ted Unangst
2014-03-06tweak; from jmc@ and yours trulyChristian Weisgerber
ok jmc@ tedu@
2014-03-05consistently say buflen so i know what length it isTed Unangst
2014-03-05when reading a message, add one byte so we can nul terminuate.Ted Unangst
simplify verifychecksums with the knowledge that input is a proper string.
2014-03-05tighten up code a littleTed Unangst
2014-03-05check calloc and free memory. noticed by jsg and lteo.Ted Unangst
tweak failure tracking
2014-03-04add -C checksum mode, which works with sha256 files in safe easy fashion.Ted Unangst
ok deraadt
2014-02-27use the real keys' namesTed Unangst
2014-01-22replace sensitive memsets with explicit_bzeroTed Unangst
2014-01-19do not truncate strlcpy/snprintf, fail hard and properTheo de Raadt
ok tedu
2014-01-19better error message for readpassphrase. from fritjof. ok deraadtTed Unangst
2014-01-17Add a new example showing how to verify bsd.rd with signify and the newLawrence Teo
sha256 -C option. suggested by deraadt@ help/OK jmc@ tedu@
2014-01-15pipes mean read/write may short out.Marc Espie
okay tedu@
2014-01-14most common pbkdf failure is no password, so check that first.Ted Unangst
prompted by fritjof
2014-01-14rearrange the bottom of main so it is less of a "zoo". ok deraadtTed Unangst
2014-01-14stick that last example in a display, and avoid linewrap;Jason McIntyre
2014-01-14this can be staticTed Unangst
2014-01-14stdlib.h for malloc. from FritjofTed Unangst
2014-01-14use a pipe, as intended, in the exampleChristian Weisgerber
2014-01-13premature, only wanted to commit n: -> nMarc Espie
2014-01-13duh, -n does not take argsMarc Espie
2014-01-13dang it!Ted Unangst
2014-01-13new day, new options. -m message and -x signature.Ted Unangst
this should be less confusing and more consistent in various modes. also support stdin/stdout where feasible. touch up usage to be helpful. ok deraadt
2014-01-12we only write to writable files, so use O_WRONLY.Ted Unangst
st_size is only meaningful for regular files, so check S_ISREG
2014-01-12add missing dash in -p optionRobert Peichaer
OK tedu@ jmc@
2014-01-12improve release directory exampleTheo de Raadt
2014-01-12subtly improve an exampleTheo de Raadt
2014-01-11Check the return value of fstat() in readmsg().Lawrence Teo
OK deraadt@ tedu@