2013-07-22 04:34:07 -04:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2014-11-13 13:54:28 -05:00
|
|
|
#include <stdint.h>
|
2013-07-22 04:34:07 -04:00
|
|
|
#include <stdio.h>
|
2014-11-13 12:29:30 -05:00
|
|
|
|
2013-07-22 04:34:07 -04:00
|
|
|
#include "crypt.h"
|
|
|
|
#include "sha512.h"
|
2014-11-13 13:54:28 -05:00
|
|
|
#include "util.h"
|
2013-07-22 04:34:07 -04:00
|
|
|
|
2014-11-17 08:38:52 -05:00
|
|
|
static struct sha512 s;
|
2013-07-22 04:34:07 -04:00
|
|
|
struct crypt_ops sha512_ops = {
|
|
|
|
sha512_init,
|
|
|
|
sha512_update,
|
|
|
|
sha512_sum,
|
|
|
|
&s,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
2013-08-15 05:55:21 -04:00
|
|
|
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];
|
2014-03-23 07:18:38 -04:00
|
|
|
char *checkfile = NULL;
|
2013-07-22 04:34:07 -04:00
|
|
|
|
|
|
|
ARGBEGIN {
|
2013-08-15 05:55:21 -04:00
|
|
|
case 'c':
|
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;
|
|
|
|
|
2015-02-17 04:08:28 -05:00
|
|
|
if (checkfile)
|
2014-03-23 07:18:38 -04:00
|
|
|
return cryptcheck(checkfile, argc, argv, &sha512_ops, md, sizeof(md));
|
2013-09-02 06:17:55 -04:00
|
|
|
return cryptmain(argc, argv, &sha512_ops, md, sizeof(md));
|
2013-07-22 04:34:07 -04:00
|
|
|
}
|