Files
sbase/md5sum.c
T

43 lines
728 B
C
Raw Normal View History

2013-06-19 09:54:52 +01:00
/* See LICENSE file for copyright and license details. */
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
2014-11-13 18:29:30 +01:00
#include "crypt.h"
2013-06-19 09:54:52 +01:00
#include "md5.h"
#include "util.h"
2013-06-19 09:54:52 +01:00
2014-11-17 13:38:52 +00:00
static struct md5 s;
struct crypt_ops md5_ops = {
md5_init,
md5_update,
md5_sum,
&s,
};
2013-06-19 09:54:52 +01:00
static void
usage(void)
{
2015-01-31 23:54:23 +01:00
eprintf("usage: %s [-c] [file ...]\n", argv0);
2013-06-19 09:54:52 +01:00
}
int
main(int argc, char *argv[])
{
2015-05-25 01:33:19 +02:00
int ret = 0, (*cryptfunc)(int, char **, struct crypt_ops *, uint8_t *, size_t) = cryptmain;
uint8_t md[MD5_DIGEST_LENGTH];
2013-06-19 09:54:52 +01:00
ARGBEGIN {
case 'c':
cryptfunc = cryptcheck;
2014-03-23 12:18:38 +01:00
break;
2013-06-19 09:54:52 +01:00
default:
usage();
2015-11-01 10:16:49 +00:00
} ARGEND
2013-06-19 09:54:52 +01:00
2015-05-25 01:33:19 +02:00
ret |= cryptfunc(argc, argv, &md5_ops, md, sizeof(md));
ret |= fshut(stdin, "<stdin>") | fshut(stdout, "<stdout>");
return ret;
2013-06-19 09:54:52 +01:00
}