sbase/sha256sum.c

46 lines
778 B
C
Raw Normal View History

2013-07-19 09:29:43 -04:00
/* See LICENSE file for copyright and license details. */
#include <stdint.h>
2013-07-19 09:29:43 -04:00
#include <stdio.h>
2013-07-19 09:29:43 -04:00
#include "crypt.h"
#include "sha256.h"
#include "util.h"
2013-07-19 09:29:43 -04:00
2014-11-17 08:38:52 -05:00
static struct sha256 s;
2013-07-19 09:29:43 -04:00
struct crypt_ops sha256_ops = {
sha256_init,
sha256_update,
sha256_sum,
&s,
};
static void
usage(void)
{
eprintf("usage: %s [-c] [file ...]\n", argv0);
2013-07-19 09:29:43 -04:00
}
int
main(int argc, char *argv[])
{
int ret = 0, (*cryptfunc)(int, char **, struct crypt_ops *, uint8_t *, size_t) = cryptmain;
2013-07-19 09:29:43 -04:00
uint8_t md[SHA256_DIGEST_LENGTH];
ARGBEGIN {
2019-12-22 14:53:35 -05:00
case 'b':
case 't':
/* ignore */
break;
case 'c':
cryptfunc = cryptcheck;
2014-05-05 04:05:01 -04:00
break;
2013-07-19 09:29:43 -04:00
default:
usage();
} ARGEND
2013-07-19 09:29:43 -04:00
ret |= cryptfunc(argc, argv, &sha256_ops, md, sizeof(md));
ret |= fshut(stdin, "<stdin>") | fshut(stdout, "<stdout>");
return ret;
2013-07-19 09:29:43 -04:00
}