summaryrefslogtreecommitdiff
path: root/util/sbase/md5sum.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/sbase/md5sum.c')
-rw-r--r--util/sbase/md5sum.c46
1 files changed, 46 insertions, 0 deletions
diff --git a/util/sbase/md5sum.c b/util/sbase/md5sum.c
new file mode 100644
index 00000000..224b20ed
--- /dev/null
+++ b/util/sbase/md5sum.c
@@ -0,0 +1,46 @@
+/* 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"
+
+static struct md5 s;
+struct crypt_ops md5_ops = {
+ md5_init,
+ md5_update,
+ md5_sum,
+ &s,
+};
+
+static void
+usage(void)
+{
+ eprintf("usage: %s [-c] [file ...]\n", argv0);
+}
+
+int
+main(int argc, char *argv[])
+{
+ int ret = 0, (*cryptfunc)(int, char **, struct crypt_ops *, uint8_t *, size_t) = cryptmain;
+ uint8_t md[MD5_DIGEST_LENGTH];
+
+ ARGBEGIN {
+ case 'b':
+ case 't':
+ /* ignore */
+ break;
+ case 'c':
+ cryptfunc = cryptcheck;
+ break;
+ default:
+ usage();
+ } ARGEND
+
+ ret |= cryptfunc(argc, argv, &md5_ops, md, sizeof(md));
+ ret |= fshut(stdin, "<stdin>") | fshut(stdout, "<stdout>");
+
+ return ret;
+}