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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
/*
* (C) 2012-2015 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 <string.h>
#include <locale.h>
#include <langinfo.h>
#include <iconv.h>
#include <nettle/md4.h>
#define BUF_SIZE 64
int main(int argc, char **argv) {
struct md4_ctx ctx;
char inbuffer[BUF_SIZE], outbuffer[2 * BUF_SIZE];
char *in = inbuffer, *out = outbuffer;
uint8_t digest[MD4_DIGEST_SIZE];
int i, linebreak = 0;
size_t done, inbytes, outbytes;
iconv_t conv;
if (setlocale(LC_ALL, "") == NULL) {
fprintf(stderr, "Failed to initialize locale\n");
return EXIT_FAILURE;
}
md4_init(&ctx);
while (1) {
done = inbytes = fread(inbuffer, 1, sizeof(inbuffer), stdin);
outbytes = sizeof(outbuffer);
if (strstr(inbuffer, "\n") != NULL)
linebreak++;
conv = iconv_open("UTF-16LE", nl_langinfo(CODESET));
if (iconv(conv, &in, &inbytes, &out, &outbytes) == -1) {
fprintf(stderr, "Failed to convert characters\n");
return EXIT_FAILURE;
}
iconv_close(conv);
md4_update(&ctx, sizeof(outbuffer) - outbytes, (unsigned char *)outbuffer);
if (done < sizeof(inbuffer))
break;
}
if (linebreak)
fprintf(stderr, "Warning: Input contains line break!\n");
md4_digest(&ctx, MD4_DIGEST_SIZE, digest);
for (i = 0; i < MD4_DIGEST_SIZE; i++)
printf("%02x", digest[i]);
putchar('\n');
return EXIT_SUCCESS;
}
|