sbase/md5sum.c

44 lines
693 B
C
Raw Normal View History

/* See LICENSE file for copyright and license details. */
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include "crypt.h"
#include "md5.h"
#include "util.h"
2014-11-17 13:38:52 +00:00
static struct md5 s;
struct crypt_ops md5_ops = {
md5_init,
md5_update,
md5_sum,
&s,
};
static void
usage(void)
{
2015-01-31 22:54:23 +00:00
eprintf("usage: %s [-c] [file ...]\n", argv0);
}
int
main(int argc, char *argv[])
{
uint8_t md[MD5_DIGEST_LENGTH];
char *checkfile = NULL;
int cflag = 0;
ARGBEGIN {
case 'c':
cflag = 1;
2014-05-05 08:11:37 +00:00
checkfile = ARGF();
break;
default:
usage();
} ARGEND;
if (cflag)
return cryptcheck(checkfile, argc, argv, &md5_ops, md, sizeof(md));
return cryptmain(argc, argv, &md5_ops, md, sizeof(md));
}