aboutsummaryrefslogtreecommitdiffstats
path: root/guesskeylength.c
blob: 7941a93b32bc54031ab0c4abc7ae67824f7edeb2 (plain)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>

#define CTOI(c) ((c) - 'A')
#define ITOC(c) ((c) + 'A')

#define ALPHACHARS 26

void preprocess(char *str)
{
	char *src = str, *dest = str;

	while (*src != '\0') {
		if (isalpha(*src))
			*(dest++) = toupper(*src);
		src++;
	}

	*dest = '\0';
}

double calc_ic_column(const char *text, size_t length, size_t offset, size_t spacing)
{
	unsigned foundc[ALPHACHARS] = {0}, total_chars = 0;
	unsigned long pre_sum = 0;

	for (size_t i = offset; i < length; i += spacing, total_chars++)
		foundc[CTOI(text[i])]++;

	for (unsigned i = 0; i < ALPHACHARS; i++)
		pre_sum += foundc[i] * (foundc[i] - 1);

	return (double)pre_sum / ((double)total_chars * (double)(total_chars - 1) / ALPHACHARS);
}

double calc_ic(const char *text, size_t length, size_t width)
{
	double total = 0;

	for (size_t offset = 0; offset < width; offset++)
		total += calc_ic_column(text, length, offset, width);

	return total / width;
}

int main(int argc, char **argv)
{
	char *text;
	size_t length;
	unsigned long max;

	if (argc != 3) {
		fprintf(stderr, "Usage: %s <text> <max>\a\n", argv[0]);
		exit(EXIT_FAILURE);
	}

	text = argv[1];
	max = strtoul(argv[2], NULL, 10);

	preprocess(text);
	length = strlen(text);

	for (unsigned long spacing = 1; spacing <= max; spacing++) {
		double ic = calc_ic(text, length, spacing);
		unsigned barlen;

		if (ic > 0.8 && ic < 4)
			barlen = (ic - 0.8) / 3.2 * 40.0;
		else
			barlen = ic <= 0.8 ? 0 : 40;

		printf("%3lu - %6.3f ", spacing, ic);
		for (unsigned i = 0; i < barlen; i++)
			putchar('#');
		putchar('\n');
	}

	return EXIT_SUCCESS;
}