9b06720f62
Previously, it was not possible to use sha1sum test.c | sha1sum -c because the program would not differenciate between an empty argument and a non-specified argument. Moreover, why not allow this? sha1sum -c hashlist1 hashlist2 Digging deeper I found that using function pointers and a modification in the crypt-backend might simplify the program a lot by passing the argument-list to both cryptmain and cryptcheck. Allowing more than one list-file to be specified is also consistent with what the other implementations support, so we not only have simpler code, we also do not silently break if there's a script around passing multiple files to check.
39 lines
633 B
C
39 lines
633 B
C
/* See LICENSE file for copyright and license details. */
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
#include "crypt.h"
|
|
#include "sha1.h"
|
|
#include "util.h"
|
|
|
|
static struct sha1 s;
|
|
struct crypt_ops sha1_ops = {
|
|
sha1_init,
|
|
sha1_update,
|
|
sha1_sum,
|
|
&s,
|
|
};
|
|
|
|
static void
|
|
usage(void)
|
|
{
|
|
eprintf("usage: %s [-c] [file ...]\n", argv0);
|
|
}
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
int (*cryptfunc)(int, char **, struct crypt_ops *, uint8_t *, size_t) = cryptmain;
|
|
uint8_t md[SHA1_DIGEST_LENGTH];
|
|
|
|
ARGBEGIN {
|
|
case 'c':
|
|
cryptfunc = cryptcheck;
|
|
break;
|
|
default:
|
|
usage();
|
|
} ARGEND;
|
|
|
|
return cryptfunc(argc, argv, &sha1_ops, md, sizeof(md));
|
|
}
|