aboutsummaryrefslogtreecommitdiffstats
path: root/nthash.c
blob: ac3922aa53f729f213d55c018c40b725ce2f672d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
 * (C) 2012-2013 by Christian Hesse <mail@eworm.de>
 *
 * This software may be used and distributed according to the terms
 * of the GNU General Public License, incorporated herein by reference.
 *
 * Base on an example from:
 * http://www.lysator.liu.se/~nisse/nettle/nettle.html#Example
 */

#include <stdio.h>
#include <stdlib.h>
#include <iconv.h>
		 
#include <nettle/md4.h>
		 
#define BUF_SIZE	64
#define TOCODE		"UTF-16LE"
#define FROMCODE	"UTF-8"

int main(int argc, char **argv) {
	struct md4_ctx ctx;
	char buffer[BUF_SIZE], buffernull[2 * BUF_SIZE];
	char *in = buffer, *out = buffernull;
	uint8_t digest[MD4_DIGEST_SIZE];
	int i;
	size_t done, inbytes, outbytes;
	iconv_t conv;
	
	md4_init(&ctx);
	while (1) {
		done = inbytes = fread(buffer, 1, BUF_SIZE, stdin);
		outbytes = 2 * inbytes;

		conv = iconv_open(TOCODE, FROMCODE);
		iconv(conv, &in, &inbytes, &out, &outbytes);
		iconv_close(conv);

		md4_update(&ctx, done * 2 - outbytes, (unsigned char *)buffernull);
		if (done < BUF_SIZE)
			break;
	}
	if (ferror(stdin))
		return EXIT_FAILURE;

	md4_digest(&ctx, MD4_DIGEST_SIZE, digest);

	for (i = 0; i < MD4_DIGEST_SIZE; i++)
		printf("%02x", digest[i]);
	putchar('\n');

	return EXIT_SUCCESS;
}