sbase/sha1sum.c

41 lines
656 B
C
Raw Normal View History

/* See LICENSE file for copyright and license details. */
#include <stdint.h>
#include <stdio.h>
#include "crypt.h"
#include "sha1.h"
#include "util.h"
2014-11-17 13:38:52 +00:00
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[])
{
uint8_t md[SHA1_DIGEST_LENGTH];
char *checkfile = NULL;
ARGBEGIN {
case 'c':
2014-05-05 08:11:37 +00:00
checkfile = ARGF();
2014-05-05 08:05:01 +00:00
break;
default:
usage();
} ARGEND;
2015-02-17 09:08:28 +00:00
if (checkfile)
return cryptcheck(checkfile, argc, argv, &sha1_ops, md, sizeof(md));
return cryptmain(argc, argv, &sha1_ops, md, sizeof(md));
}