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>
|
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
|
|
|
|
2014-11-17 08:38:52 -05:00
|
|
|
static struct sha1 s;
|
2013-07-07 10:29:45 -04:00
|
|
|
struct crypt_ops sha1_ops = {
|
|
|
|
sha1_init,
|
|
|
|
sha1_update,
|
|
|
|
sha1_sum,
|
|
|
|
&s,
|
|
|
|
};
|
2013-07-04 07:14:14 -04:00
|
|
|
|
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
2015-03-01 16:51:52 -05:00
|
|
|
eprintf("usage: %s [-c] [file ...]\n", argv0);
|
2013-07-04 07:14:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2015-05-24 19:33:19 -04:00
|
|
|
int ret = 0, (*cryptfunc)(int, char **, struct crypt_ops *, uint8_t *, size_t) = cryptmain;
|
2013-07-07 10:29:45 -04:00
|
|
|
uint8_t md[SHA1_DIGEST_LENGTH];
|
2013-07-04 07:14:14 -04:00
|
|
|
|
|
|
|
ARGBEGIN {
|
2013-08-15 05:55:21 -04:00
|
|
|
case 'c':
|
2015-03-01 16:51:52 -05:00
|
|
|
cryptfunc = cryptcheck;
|
2014-05-05 04:05:01 -04:00
|
|
|
break;
|
2013-07-04 07:14:14 -04:00
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
} ARGEND;
|
|
|
|
|
2015-05-24 19:33:19 -04:00
|
|
|
ret |= cryptfunc(argc, argv, &sha1_ops, md, sizeof(md));
|
|
|
|
ret |= fshut(stdin, "<stdin>") | fshut(stdout, "<stdout>");
|
|
|
|
|
|
|
|
return ret;
|
2013-07-04 07:14:14 -04:00
|
|
|
}
|