Une nouvelle fois un problème avec mon code RSA.
Je vous explique je crée un fichier a crypter ou j'y met cela

hello antoine
sa va coment?
moi sa va e toi?

Je le crypte dans un fichier puis le décrypte dans un autre fichier mais j'ai cela comme résultat de décryptage

hello antoin
e sa va come
nt? moi sa v
a e toi?

Voila je n'arrive pas a comprendre pk il me retranscrit le message ainsi.

Je remets le code pour que vous puissiez m'aider
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
 
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <gmp.h>
 
#define ENCRYPTION_EXPONENT	65537	/* X.509, PKCS#1 */
#define ENCRYPTION_EXPONENT2	17
#define ENCRYPTION_EXPONENT3	3	/* PEM, PKCS#1 */
#define EXTENSION_LENGTH	9
#define LOG_2			((double) 0.301029995667)
#define MAX_FILENAME		500
#define MAX_PRIME_DIGITS	666
#define MAX_PRIME_RANGE		5000
#define MAX_PROB_REPS		30
#define RANDMASK		63 + 1
#define WORD_BIT_SIZE		32
 
void doProbPrimes(void);
void enCrypt();
void deCrypt();
void keyGen(void);
char *menuText =
" (1)  Generate probabilistic primes\n"
" (2)  Encrypt a message\n"
" (3)  Decrypt a message\n"
" (4)  Generate public/private keypair\n"
" (0)  Quit\n"
"\n"
"Choice: ";
 
int
main (int argc, char **argv) {
    int choice;
 
    /* seed the PRNG */
    srandom(time(NULL));
 
    printf("%s\n",banner);
 
    /* process input selections from menu */
    while (1) {
	printf("%s",menuText);
	//fflush(1);
	scanf("%d",&choice);
	getchar();
	//fflush(0);
 
	switch(choice) {
	case 0:	/* end program */
	    exit(0);
	    break;
	case 1:	/* probabilistic primes */
	    doProbPrimes();
	    break;
	case 2:	/* encrypt a file */
	    enCrypt();
	    break;
	case 3:	/* decrypt a file */
	    deCrypt();
	    break;
	case 4:	/* generate pub/priv keypair */
	    keyGen();
	    break;
	}
    }
}
 
void
doProbPrimes(void) {
    char num[MAX_PRIME_DIGITS+1];
    mpz_t userIn,x;
    int i;
 
    printf("Enter a starting number up to %d digits in length.\n",MAX_PRIME_DIGITS);
    printf("Probabilistic primes p in the range:\n");
    printf("  x <= p <= x + %d\n",MAX_PRIME_RANGE);
    printf("will be found.\n");
 
    printf("Number: ");
    fflush(stdout);
 
    fgets(num,MAX_PRIME_DIGITS+1,stdin);
 
    /* initialize the integer type */
    mpz_init_set_str(userIn,num,10);
    mpz_init(x);
 
    /* if it's even, add 1... */
    if(!mpz_mod_ui(x,userIn,2)) {
	mpz_add_ui(x,userIn,1);
    }
    else {
	mpz_set(x,userIn);
    }
 
    /* loop through...skipping evens since they're not prime */
    for(i=0;i<MAX_PRIME_RANGE/2;i++) {
	mpz_add_ui(x,x,2);
 
	/* if gmp thinks it's a probabilistic prime, it works for us... */
	if(mpz_probab_prime_p(x,MAX_PROB_REPS)) {
	    printf("%s\n",mpz_get_str(NULL,10,x));
	}
    }
 
    mpz_clear(userIn);
    mpz_clear(x);
}
 
void
enCrypt(void) {
    char keyFile[MAX_FILENAME+EXTENSION_LENGTH+1], encryptFile[MAX_FILENAME+1];
    char outFile[MAX_FILENAME+1];
    FILE *PK,*OF;
    mpz_t e,n,m,c;
    int blockSize, *block, i, j;
    char *cBlock, scratch[4];
 
    /* initialize our integers */
    mpz_init(e);
    mpz_init(n);
    mpz_init(m);
    mpz_init(c);
 
    /* grab name of file to encrypt */
    printf("Enter filename to encrypt\n");
    fgets(encryptFile,MAX_FILENAME+1,stdin);
    encryptFile[strlen(encryptFile)-1] = NULL;
 
    /* grab name of ciphertext */
    printf("Enter filename to store ciphertext in\n");
    fgets(outFile,MAX_FILENAME+1,stdin);
    outFile[strlen(outFile)-1] = NULL;
printf("fichier test %s\n",encryptFile);
printf("fichier dest %s\n",outFile);
 
 /* grab name of keyfile */
    printf("Enter filename for the public key to encrypt this file with\n");
    printf("WITHOUT the .public extension\n");
    fgets(keyFile,MAX_FILENAME+1,stdin);
    keyFile[strlen(keyFile)-1] = NULL;
    strcat(keyFile,".public");
 
    /* read in key */
    PK=fopen(keyFile,"r");
if(NULL == PK) {
        perror(keyFile);
    } else {
        mpz_inp_str(e, PK, 10);
	 mpz_inp_str(n,PK,10);   
 }
//    mpz_inp_str(e,PK,10);
//    mpz_inp_str(n,PK,10);
    fclose(PK);
 
#if 0
    printf("e      = %s\n",mpz_get_str(NULL,10,e));
    printf("n      = %s\n",mpz_get_str(NULL,10,n));
#endif
 
    /* compute blocksize */
    blockSize = (strlen(mpz_get_str(NULL,10,n)) - 1) / 3;
    block = calloc(blockSize+1, sizeof(int));
    cBlock = calloc(3 * blockSize + 1, sizeof(char));
 
#if 0
    printf("blockSize = %d\n",blockSize);
#endif
 
    PK=fopen(encryptFile,"r");
    OF=fopen(outFile,"w+");
 
    /* loop thru plaintext, reading in blocks */
    while(!feof(PK)) {
 
	/* read in enough chars for block */
	for(i=0;i<blockSize && !feof(PK);i++) {
	    block[i] = fgetc(PK);
 
	    if(block[i] == EOF) {
		block[i] = 0;
		break;
	    }
	    else if((block[i] < 32) || (block[i] > 127))
		block[i] = ' ';
 
	    block[i+1]=0;
	}
 
	/* concat decimal representations */
	for(j=0;j<i;j++) {
	    sprintf(scratch,"%d",block[j]);
	    strcat(cBlock,scratch);
	}
 
	/* put string into integer type */
	mpz_set_str(m,cBlock,10);
 
	/* c = (m^e) % n ... RSA encryption */
	mpz_powm(c,m,e,n);
 
	/* write out encrypted block */
	mpz_out_str(OF,10,c);
	fprintf(OF,"\n");
	cBlock[0]='\0';
    }
 
    fclose(PK);
    fclose(OF);
 
    mpz_clear(e);
    mpz_clear(n);
    mpz_clear(m);
    mpz_clear(c);
    free(cBlock);
    free(block);
}
 
void
deCrypt(void) {
    char keyFile[MAX_FILENAME+EXTENSION_LENGTH+1], decryptFile[MAX_FILENAME+1];
    char outFile[MAX_FILENAME+1];
    FILE *PK,*OF;
    mpz_t d,n,m,c;
    int blockSize, i, j;
    char *cBlock, scratch[4];
 
    /* init ints */
    mpz_init(d);
    mpz_init(n);
    mpz_init(m);
    mpz_init(c);
 
    /* grab name of file to decrypt */
    printf("Enter filename to decrypt\n");
    fgets(decryptFile,MAX_FILENAME+1,stdin);
    decryptFile[strlen(decryptFile)-1] = NULL;
 
    /* grab name of plaintext file */
    printf("Enter filename to store plaintext in\n");
    fgets(outFile,MAX_FILENAME+1,stdin);
    outFile[strlen(outFile)-1] = NULL;
 
    /* grab name of keyfile */
    printf("Enter filename for the private key to decrypt this file with\n");
    printf("WITHOUT the .private extension\n");
    fgets(keyFile,MAX_FILENAME+1,stdin);
    keyFile[strlen(keyFile)-1] = NULL;
 
    strcat(keyFile,".private");
 
    /* read in private key */
    PK=fopen(keyFile,"r");
    mpz_inp_str(d,PK,10);
    mpz_inp_str(n,PK,10);
    fclose(PK);
 
#if 0
    printf("d      = %s\n",mpz_get_str(NULL,10,d));
    printf("n      = %s\n",mpz_get_str(NULL,10,n));
#endif
 
    /* calculate size of character block */
    cBlock = calloc(mpz_sizeinbase(n,10)+2,sizeof(char));
 
    PK=fopen(decryptFile,"r");
    OF=fopen(outFile,"w+");
 
    /* loop through encrypted blocks, decrypting them */
    while(!feof(PK) && mpz_inp_str(c,PK,10)) {
 
	/* m = (c^d) % n ... RSA decryption */
	mpz_powm(m,c,d,n);
 
	mpz_get_str(cBlock,10,m);
#if 0
	printf("cBlock = %s\n",cBlock);
#endif
 
	/* loop through decrypted block, separating out individual
	 * characters
	 */
	for(i=0;i<strlen(cBlock);i++) {
	    if(cBlock[i] == '1') {
		scratch[0] = cBlock[i]; i++;
		scratch[1] = cBlock[i]; i++;
		scratch[2] = cBlock[i];
		scratch[3] = '\0';
	    }
	    else {
		scratch[0] = cBlock[i]; i++;
		scratch[1] = cBlock[i];
		scratch[2] = '\0';
		scratch[3] = '\0';
	    }
	    fprintf(OF,"%c",atoi(scratch));
	}
 
	fprintf(OF,"\n");
    }
 
    fclose(PK);
    fclose(OF);
 
    mpz_clear(d);
    mpz_clear(n);
    mpz_clear(m);
    mpz_clear(c);
    free(cBlock);
}
 
void
keyGen(void) {
    int userDigits,rLimbs,i,r;
    mpz_t randInt1,randInt2,p,q,n,phi_n,e,d,p_1,q_1,foo;
    char fname[MAX_FILENAME+1], pubFname[MAX_FILENAME+EXTENSION_LENGTH+1];
    char privFname[MAX_FILENAME+EXTENSION_LENGTH+1];
    FILE *PUBF, *PRIVF;
do {
	printf("Enter the (ROUGH) approximate number of digits you want\n");
	printf("your RSA primes to be (min 12, max %d).\n\n",MAX_PRIME_DIGITS);
 
	printf("Size: ");
	fflush(stdout);
 
	scanf("%d",&userDigits);
	fflush(stdin);
 
    } while((userDigits < 12) || (userDigits > MAX_PRIME_DIGITS));
 
    /* figure out how many limbs will hold the specified number of digits */
    rLimbs = ((((double) userDigits) / LOG_2) / ((double) WORD_BIT_SIZE)) + 1;
 
#if 0
    printf("limbs: %d %f\n",rLimbs,((double) userDigits) / LOG_2);
#endif
 
    mpz_init(randInt1);
    mpz_init(randInt2);
    mpz_init(p);
    mpz_init(q);
    mpz_init(p_1);
    mpz_init(q_1);
    mpz_init(n);
    mpz_init(phi_n);
    mpz_init(e);
    mpz_init(d);
    mpz_init(foo);
 
    /* find a random starting point for p...since there's no mpz_srandom,
     * find a random number of random numbers first
     */
    do {
	r=random() & RANDMASK;
	for(i=0;i<r;i++)
	    mpz_random(randInt1,rLimbs);
    } while(strlen(mpz_get_str(NULL,10,randInt1)) < userDigits);
 
    mpz_set(p,randInt1);
 
    /* keep looking for probabilistic primes */
    while(!mpz_probab_prime_p(p,MAX_PROB_REPS)) {
	mpz_add_ui(p,p,1);
    }
 
    printf("p = %s\n",mpz_get_str(NULL,10,p));
 
    /* find a random starting point for q...since there's no mpz_srandom,
     * find a random number of random numbers first
     */
    do {
	r=random() & RANDMASK;
	for(i=0;i<r;i++)
	    mpz_random(randInt2,rLimbs);
    } while(strlen(mpz_get_str(NULL,10,randInt2)) < userDigits);
 
    mpz_set(q,randInt2);
 
    /* keep looking for probabilistic primes */
    while(!mpz_probab_prime_p(q,MAX_PROB_REPS)) {
	mpz_add_ui(q,q,1);
    }
 
    printf("q = %s\n",mpz_get_str(NULL,10,q));
 
    /* find n */
    mpz_mul(n,p,q);
    printf("n = %s\n",mpz_get_str(NULL,10,n));
 
    /* find phi(n) */
    mpz_sub_ui(p_1,p,1);
    mpz_sub_ui(q_1,q,1);
    mpz_mul(phi_n,p_1,q_1);
    printf("phi(n) = %s\n",mpz_get_str(NULL,10,phi_n));
 
 mpz_set_ui(e,ENCRYPTION_EXPONENT);
    printf("e = %s\n",mpz_get_str(NULL,10,e));
 
    /* find d */
    mpz_invert(d,e,phi_n);
    printf("d = %s\n",mpz_get_str(NULL,10,d));
 
    /* just for the hell of it, show that it works... */
    mpz_mul(foo,e,d);
    mpz_mod(foo,foo,phi_n);
    printf("e * d %% n = %s\n",mpz_get_str(NULL,10,foo));
 
    /* get filename for the pub/priv keys */
    printf("Enter filename to write out to (e.g. \"foo\" would give foo.public, foo.private)\n");
    printf("or just hit return to not save.\n");
    fgets(fname,MAX_FILENAME+1,stdin);
 
    fname[strlen(fname)-1] = NULL;
 
    if(fname[0] != NULL) {
	strcpy(pubFname,fname);
	strcat(pubFname,".public");
 
	strcpy(privFname,fname);
	strcat(privFname,".private");
 
	/* write out public key */
	PUBF=fopen(pubFname,"w+t");
	mpz_out_str(PUBF,10,e);
	fprintf(PUBF,"\n");
	mpz_out_str(PUBF,10,n);
	fprintf(PUBF,"\n");
	fclose(PUBF);
 
	/* write out private key */
	PRIVF=fopen(privFname,"w+t");
	mpz_out_str(PRIVF,10,d);
	fprintf(PRIVF,"\n");
	mpz_out_str(PRIVF,10,n);
	fprintf(PRIVF,"\n");
	fclose(PRIVF);
    }
 
    mpz_clear(randInt1);
    mpz_clear(randInt2);
    mpz_clear(p);
    mpz_clear(q);
    mpz_clear(p_1);
    mpz_clear(q_1);
    mpz_clear(n);
    mpz_clear(phi_n);
    mpz_clear(e);
    mpz_clear(d);
 
}