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
|
#include <stdio.h>
#include <stdlib.h>
#include "mhash_sha256.h"
/*
* from driver.c of mhash
*/
static const char hexconvtab[] = "0123456789abcdef";
static char *
bin2hex(const unsigned char *old, const size_t oldlen, size_t * newlen)
{
unsigned char *new = NULL;
int i, j;
new = (char *) malloc(oldlen * 2 * sizeof(char) + 1);
if (!new)
return (new);
for (i = j = 0; i < oldlen; i++) {
new[j++] = hexconvtab[old[i] >> 4];
new[j++] = hexconvtab[old[i] & 15];
}
new[j] = '\0';
if (newlen)
*newlen = oldlen * 2 * sizeof(char);
return (new);
}
int main(int argc, char** argv)
{
FILE *file;
size_t n;
SHA256_CTX ctx;
unsigned char buf[1024];
byte output[33];
if ( argc <= 1 ) {
return EXIT_FAILURE;
}
if ( (file=fopen(argv[1], "rb")) == NULL ) {
return EXIT_FAILURE;
}
sha256_init(&ctx);
while ( (n=fread( buf, 1, sizeof(buf), file)) > 0 )
sha256_update(&ctx, buf, n );
sha256_final(&ctx);
sha256_digest(&ctx, output);
printf("%s ?%s\n", bin2hex(output, 32, &n), argv[1]);
return EXIT_SUCCESS;
}
|