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