2013-07-19 13:29:43 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2014-11-13 18:54:28 +00:00
|
|
|
#include <stdint.h>
|
2013-07-19 13:29:43 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2014-11-13 17:29:30 +00:00
|
|
|
|
2013-07-19 13:29:43 +00:00
|
|
|
#include "crypt.h"
|
|
|
|
#include "sha256.h"
|
2014-11-13 18:54:28 +00:00
|
|
|
#include "util.h"
|
2013-07-19 13:29:43 +00:00
|
|
|
|
2014-11-17 13:38:52 +00:00
|
|
|
static struct sha256 s;
|
2013-07-19 13:29:43 +00:00
|
|
|
struct crypt_ops sha256_ops = {
|
|
|
|
sha256_init,
|
|
|
|
sha256_update,
|
|
|
|
sha256_sum,
|
|
|
|
&s,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
2013-08-15 09:55:21 +00:00
|
|
|
eprintf("usage: %s [-c] [file...]\n", argv0);
|
2013-07-19 13:29:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
uint8_t md[SHA256_DIGEST_LENGTH];
|
2014-03-23 11:18:38 +00:00
|
|
|
char *checkfile = NULL;
|
2014-11-13 20:24:47 +00:00
|
|
|
int cflag = 0;
|
2013-07-19 13:29:43 +00:00
|
|
|
|
|
|
|
ARGBEGIN {
|
2013-08-15 09:55:21 +00:00
|
|
|
case 'c':
|
2014-11-13 20:24:47 +00:00
|
|
|
cflag = 1;
|
2014-05-05 08:11:37 +00:00
|
|
|
checkfile = ARGF();
|
2014-05-05 08:05:01 +00:00
|
|
|
break;
|
2013-07-19 13:29:43 +00:00
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
} ARGEND;
|
|
|
|
|
2014-11-13 17:29:30 +00:00
|
|
|
if (cflag)
|
2014-03-23 11:18:38 +00:00
|
|
|
return cryptcheck(checkfile, argc, argv, &sha256_ops, md, sizeof(md));
|
2013-09-02 10:17:55 +00:00
|
|
|
return cryptmain(argc, argv, &sha256_ops, md, sizeof(md));
|
2013-07-19 13:29:43 +00:00
|
|
|
}
|