Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-07-14 | Bump example pubkey filenames for 5.8 | Florian Obser | |
OK benno@ | |||
2015-02-16 | Declare ge25519_base as extern, to prevent it from becoming a common. Gets us | Miod Vallat | |
rid of ``lignment 4 of symbol `crypto_sign_ed25519_ref_ge25519_base' in mod_ge25519.o is smaller than 16 in mod_ed25519.o'' warnings at link time. | |||
2015-01-20 | i wrote this | Ted Unangst | |
2015-01-16 | improve checksum parsing slightly. now handles filenames with spaces. | Ted Unangst | |
(though not names with ')'; sorry.) | |||
2015-01-16 | just to be careful, add a cpp guard that the sscanf sizes are ok | Ted Unangst | |
2015-01-15 | use PATH_MAX for path buffers. in case, you know... | Ted Unangst | |
2015-01-09 | absurd optimization. reduce initial space by one to avoid leaving one byte | Ted Unangst | |
hanging off on a page by itself. | |||
2015-01-07 | bcallah noticed the ifndef guard for headers was wrong. don't fix, just | Ted Unangst | |
remove it, and put these includes up with their friends. | |||
2015-01-07 | Bump example pubkey filenames for 5.7 | Florian Obser | |
OK benno@ | |||
2014-12-29 | useless change. overwriting the nul byte with a newline means b64_ntop | Ted Unangst | |
can use the whole buffer, even the last byte. | |||
2014-12-29 | rename fingerprint struct field. no longer exposed to users, but since it's | Ted Unangst | |
not technically a fingerprint as others understand the term, pick another. now it's a keynum! after an email from Florian Weimer | |||
2014-12-29 | remove the inspect debug command. should not be used by users, who are not | Ted Unangst | |
supposed to know what fingerprints are or that they exist. | |||
2014-11-20 | Yet more #include de-duplication. | Kenneth R Westerback | |
ok deraadt@ tedu@ | |||
2014-08-22 | don't need this file, only the mod version | Ted Unangst | |
2014-08-07 | Bump example pubkey filenames to /etc/signify/openbsd-56-base.pub for | Lawrence Teo | |
5.6. ok deraadt@ | |||
2014-07-22 | Pull in all the parts. Let's face the facts -- .PATH from other | Theo de Raadt | |
parts of the tree is PAINFUL for basically everyone upstream, not just for us in our own tree. | |||
2014-07-13 | compare snprintf return value with -1. this isn't really necessary because | Ted Unangst | |
int promotion rules guarantee the correct result when compared with sizeof, but it is perhaps easier for some people to understand it this way. from Doug Hogan. | |||
2014-05-30 | don't assign variables in if() that's not error checking | Ted Unangst | |
2014-05-30 | a little style consistency with error checking | Ted Unangst | |
2014-05-16 | save up the failures for the end in the argc == 0. | Ted Unangst | |
help ok espie | |||
2014-05-16 | a few changes for new code to match local style | Ted Unangst | |
2014-05-16 | checksum mode can use magic pubkey finder too | Ted Unangst | |
2014-05-16 | rework -C (perfect candidate for using hash tables, really): | Marc Espie | |
insert files we want to check into a hash, parse SHA256 message on the fly, delete entries whose checksum match, then display entries that failed. This completely avoids allocating temporary storage for file names and checksums and removes the quadratic match (argv[i] vs line[n]). okay tedu@ | |||
2014-05-15 | fix the band-aid error. | Marc Espie | |
tedu was bitten by the RETARDED interface in sha2.h (who names string LENGTH things that are actually buffer SIZES) ? make -C mode work again. okay beck@ | |||
2014-05-14 | let cpp do some of the work | Ted Unangst | |
2014-05-14 | spell out base64 in error messages | Ted Unangst | |
2014-05-14 | save some memory by reducing buffer sizes | Ted Unangst | |
2014-05-14 | recode base64 hashes if necessary | Ted Unangst | |
2014-05-14 | realloc like a boss, so checksum verification doesn't take minutes. | Ted Unangst | |
2014-05-06 | temp variable for a bit of clarity | Ted Unangst | |
2014-05-06 | remove unneeded variable | Ted Unangst | |
2014-05-06 | factor out the safepath | Ted Unangst | |
2014-05-06 | be more explicit about what's a string | Ted Unangst | |
2014-05-06 | better alloc idiom | Ted Unangst | |
2014-05-06 | factor max message size | Ted Unangst | |
2014-04-22 | use reallocarray | Ted Unangst | |
2014-04-22 | errx when errno won't be set. | Ted Unangst | |
2014-04-14 | confirm passwords when generating keys | Ted Unangst | |
2014-03-17 | quiet time is over | Ted Unangst | |
2014-03-17 | clean up after ourselves. | Marc Espie | |
okay tedu@ | |||
2014-03-17 | simplify readmsg loop | Ted Unangst | |
2014-03-17 | tweak a few messages | Ted Unangst | |
2014-03-17 | check memcmp return explicitly | Ted Unangst | |
2014-03-17 | pull out the pubkey reading bits | Ted Unangst | |
2014-03-17 | refactor and recombine verify functions. | Ted Unangst | |
2014-03-17 | move fingerprint check into verifymsg | Ted Unangst | |
(stop printing fingerprints here; probably not that helpful) | |||
2014-03-17 | clarify a variable or two; ok tedu | Theo de Raadt | |
2014-03-17 | have to fill in comment before we can use it. | Ted Unangst | |
2014-03-16 | do filename check in the other place too. needs a refactor | Ted Unangst | |
2014-03-16 | resolve espie's complaints about appendall (maybe) by folding it into | Ted Unangst | |
writeb64file. idea from deraadt |