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