sbase/sha512sum.c

44 lines
712 B
C
Raw Normal View History

2013-07-22 04:34:07 -04:00
/* See LICENSE file for copyright and license details. */
#include <stdint.h>
2013-07-22 04:34:07 -04:00
#include <stdio.h>
#include <stdlib.h>
2013-07-22 04:34:07 -04:00
#include "crypt.h"
#include "sha512.h"
#include "util.h"
2013-07-22 04:34:07 -04:00
struct sha512 s;
struct crypt_ops sha512_ops = {
sha512_init,
sha512_update,
sha512_sum,
&s,
};
static void
usage(void)
{
eprintf("usage: %s [-c] [file...]\n", argv0);
2013-07-22 04:34:07 -04:00
}
int
main(int argc, char *argv[])
{
uint8_t md[SHA512_DIGEST_LENGTH];
char *checkfile = NULL;
int cflag = 0;
2013-07-22 04:34:07 -04:00
ARGBEGIN {
case 'c':
cflag = 1;
2014-05-05 04:11:37 -04:00
checkfile = ARGF();
2014-05-05 04:05:01 -04:00
break;
2013-07-22 04:34:07 -04:00
default:
usage();
} ARGEND;
if (cflag)
return cryptcheck(checkfile, argc, argv, &sha512_ops, md, sizeof(md));
return cryptmain(argc, argv, &sha512_ops, md, sizeof(md));
2013-07-22 04:34:07 -04:00
}