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