summaryrefslogtreecommitdiffstats
path: root/src/onetimebluh.c
blob: 0823f4d877299a89aa439098873096f3166c9de0 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>
#include <openssl/rand.h>
#include <unistd.h>
#include <errno.h>
#include <error.h>

void xor(int ed, char* mess, char* keyf, char* outp);		/* operates the bitwise XOR between mess and keyf and puts the output to outp */
void keyrand(int nb, char* outp);				/* generates random numbers using RAND_bytes from openssl and puts them into outp */
void help(char* av[]);						/* prints the help message */

int main(int argc, char* argv[]) {

	int opt = 1;
	int command = 0;
	int comm = 0;
	int tear = 0;
	char* message = NULL;
	char* keyfile = NULL;
	char* output = NULL;
	int nbytes = -1;	// must be resolved temporary workaround (ho sonno)

	/* The following while cycle parses the argv vector to find commands, options and relative arguments
	   using the function getopt_long */

	while (opt) {
		int option_index = 0;
		static struct option options[] = {
			{"decrypt",	required_argument,	0,	'd'},
			{"encrypt",	required_argument,	0,	'e'},
			{"key-file",	required_argument,	0,	'k'},
			{"gen-key",	no_argument,		0,	'g'},
			{"help",	no_argument,		0,	'h'},
			{"nbytes",	required_argument,	0,	'n'},
			{"output",	required_argument,	0,	'o'},
			{"tear-page",	no_argument,		0,	't'},
			{0,		0,			0,	0},
		};

		if ((opt = getopt_long(argc, argv, "d:e:ghk:n:o:t", options, &option_index)) == -1)
			break;

		switch (opt) {
		case 'd':
			message = argv[optind-1];
			command++;
			comm = 'u';
			break;
		case 'e':
			message = argv[optind-1];
			if (access(message, F_OK) == -1) {		/* checks the existence of the file and eventually exits */
				error(errno, errno, message);
			}
			command++;
			comm = 'e';
			break;
		case 'g':
			command++;
			comm = 'g';
			break;
		case 'h':
			help(argv);
			command++;
			break;
		case 'k':
			keyfile = argv[optind-1];
			if (access(keyfile, F_OK) == -1) {		/* look at the comment before */
				error(errno, errno, keyfile);
			}
			break;
		case 'n':
			nbytes = atoi(argv[optind-1]);
			break;
		case 'o':
			output = argv[optind-1];
			break;
		case 't':
			tear = 1;
			break;
		case '?':
			break;
		default:
			printf("carachter code returned 0%o \n", opt);
		}
	}

	/* Next section performs some input checks */

	if (command == 0) {
		printf("No command called \n");
		exit(EXIT_FAILURE);
	} else if (command > 1) {
		printf("Multiple commands called \n");
		printf("%s [COMMAND] [OPTIONS] ... \n",argv[0]);
		exit(EXIT_FAILURE);
	}

	if (optind < argc) {
		printf("Too many arguments \n");
		exit(EXIT_FAILURE);
	}

	/* Next section detects the functions to call */

	if (comm == 'e' || comm == 'u') {
		if (keyfile == NULL) {
			printf("No key specified: exit! \n");
			exit(EXIT_FAILURE);
		}
		if (tear == 1) {
			comm++;
		}
		xor(comm, message, keyfile, output);
	} else if (comm == 'g') {
		keyrand(nbytes, output);
	}

	exit(EXIT_SUCCESS);
}

void xor(int ed, char* mess, char* keyf, char* outp) {

	char* defenoutp = "critt";
	char* defdeoutp = "decritt";

	/* In absence of input by users nex block sets the default values */

	if (outp == NULL) {
		if (ed == 'e' || ed == 'f') {
			printf("WARNING no output name specified using default value 'critt' \n");
			outp = defenoutp;
		} else if (ed == 'u' || ed == 'v') {
			printf("WARNING no output name specified usign default value 'decritt' \n");
			outp = defdeoutp;
		}
	}

	FILE* mex = fopen(mess, "r");
	FILE* keyx = fopen(keyf, "r+");
	FILE* critt = fopen(outp, "w");

	long mess_size;
	long pad_size;

	fseek(mex, 0L, SEEK_END);
	mess_size = ftell(mex);
	rewind(mex);
	fseek(keyx, 0L, SEEK_END);
	pad_size = ftell(keyx);
	fseek(keyx, (pad_size - mess_size), SEEK_SET);

	char* bytes = malloc(mess_size);

	long i;
	char a, b;

	for (i = 0; i < mess_size; i ++) {
		fscanf(mex, "%c", &a);
		fscanf(keyx, "%c", &b);
		bytes[i] = a ^ b;
	}

	fwrite(bytes, sizeof(char), mess_size, critt);

	if (ed == 'f' || ed == 'v') {
		ftruncate(fileno(keyx), (pad_size - mess_size));
		fseek(keyx, 0L, SEEK_END);
		long new_pad_size = ftell(keyx);
		printf("Your pad is now %li bytes shorter \n", mess_size);
		printf("You now have %li bytes left \n", new_pad_size);
	}

	free(bytes);

	fclose(mex);
	fclose(keyx);
	fclose(critt);

	if (ed == 'e' || ed == 'f') {
		printf("Message successfully encrypted \n");
	} else if (ed == 'u' || ed == 'v') {
		printf("Message successfully decrypted \n");
	}

	return;
}

void keyrand(int nb, char* outp) {

	char* defoutp = "default.key";

	/* Next block controls the inputs and eventually sets the default values */

	if((nb == -1) && (outp == NULL)) {
		printf("WARNING no option specified usign default values... \n");
		nb = 1048576;
		outp = defoutp;
	}
	if (nb < -1) {		// orribile
		printf("Negative byte value inserted! \n");
		printf("Exiting... \n");
		exit(EXIT_FAILURE);
	} else if (nb != 0) {
		if(nb == -1) {
			printf("No byte number specified... using default value: 1MB \n");
			nb = 1048576;
		}

		unsigned char* key = malloc(nb);
		RAND_bytes(key, nb);

		if (outp == NULL) {
			outp = defoutp;
			printf("No output name specified... using default value: default.key \n");
		}

		FILE* file = fopen(outp, "w");
		fwrite(key, sizeof(char), nb, file);
		fclose(file);
		free(key);
		printf("Created key file %s of %d bytes \n", outp, nb);
	} else {
		printf("Byte number specified is 0. \n");
		printf("Doing nothing! \n");
	}

	return;
}

void help(char* av[]) {
	fprintf(stdout,"ONETIMEBLUH USAGE: \n"
	"%s [COMMAND] [OPTIONS] \n \n"
	"COMMANDS: \n"
	"-d, --decrypt=FILE	decrypt message (input) same ad --encrypt, just for the feeling \n"
	"-e, --encrypt=FILE	encrypt message (input) \n"
	"-h, --help		print this help \n"
	"-g, --key-gen		create key file \n \n"
	"OPTIONS \n"
	"-k, --key-file=KEY_FILE	use key (input) \n"
	"-b, --nbytes=NUM	number of bytes \n"
	"-o, --output=FILE	output name \n"
	"-t, --tear-page		deletes from the pad file the bytes used to encrypt/decrypt \n \n"
	"Onetimebluh project repository at https://git.eigenlab.org/Seppia/onetimebluh \n", av[0]);

	return;
}