2013-07-22 08:34:07 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "util.h"
|
|
|
|
#include "crypt.h"
|
|
|
|
#include "sha512.h"
|
|
|
|
|
|
|
|
struct sha512 s;
|
|
|
|
struct crypt_ops sha512_ops = {
|
|
|
|
sha512_init,
|
|
|
|
sha512_update,
|
|
|
|
sha512_sum,
|
|
|
|
&s,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
2013-08-15 09:55:21 +00:00
|
|
|
eprintf("usage: %s [-c] [file...]\n", argv0);
|
2013-07-22 08:34:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
uint8_t md[SHA512_DIGEST_LENGTH];
|
|
|
|
|
|
|
|
ARGBEGIN {
|
2013-08-15 09:55:21 +00:00
|
|
|
case 'c':
|
|
|
|
eprintf("not implemented\n");
|
2013-07-22 08:34:07 +00:00
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
} ARGEND;
|
|
|
|
|
2013-09-02 10:17:55 +00:00
|
|
|
return cryptmain(argc, argv, &sha512_ops, md, sizeof(md));
|
2013-07-22 08:34:07 +00:00
|
|
|
}
|