aboutsummaryrefslogtreecommitdiff
path: root/2015/04/puzzles.c
blob: 22833a2e8bc774c1d5406ea24e12ce272da474b8 (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
#include <sys/types.h>

#include <md5.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define BUFFER 128
#ifdef PART2
	#define ZEROS     "000000"
	#define NUM_ZEROS 6
#else
	#define ZEROS     "00000"
	#define NUM_ZEROS 5
#endif

int
main(void)
{
	unsigned int i = 0;
	char buffer[MD5_DIGEST_STRING_LENGTH], digest[BUFFER];
	MD5_CTX ctx;

	do {
		snprintf(digest, BUFFER, INPUT "%u", i);

		MD5Init(&ctx);
		MD5Update(&ctx, (uint8_t *) digest, strlen(digest));
		MD5End(&ctx, buffer);
	} while (strncmp(buffer, ZEROS, NUM_ZEROS) && ++i);

	printf("%u\n", i);
	return EXIT_SUCCESS;
}