IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

C Discussion :

Retour chariot apres décryptage


Sujet :

C

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre averti
    Profil pro
    Inscrit en
    Juin 2009
    Messages
    21
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2009
    Messages : 21
    Par défaut Retour chariot apres décryptage
    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);
     
    }

  2. #2
    Invité(e)
    Invité(e)
    Par défaut
    (re)Bonjour,
    D'abord, dans ta fonction encrypt, tu remplaces pas mal de caractères pas des espaces :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    else if((block[i] < 32) || (block[i] > 127))
    		block[i] = ' ';
    Comme les retours à la ligne \n et/ou \r sont donc remplacés par des espaces.

    Ensuite dans ta fonction decrypt, tu intercales un saut de ligne à chaque block décrypté :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
        while (!feof(PK) && mpz_inp_str(c, PK, 10)) {
     
            /* m = (c^d) % n ... RSA decryption */
            mpz_powm(m, c, d, n);
    ...
            fprintf(OF, "\n");
        }
    PS : Je réitère ma remarque sur l'utilisation de la fonction feof : http://emmanuel-delahaye.developpez....=Page6#LXXXIII
    Dernière modification par Deepin ; 21/07/2011 à 10h57.

  3. #3
    Membre averti
    Profil pro
    Inscrit en
    Juin 2009
    Messages
    21
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2009
    Messages : 21
    Par défaut
    Bon je suis total débutant sur le C et ce code je l'ai trouver sur internet donc ce n'est pas le mien je ne comprends pas du tout quoi mettre a la place des deux erreurs que tu m'a donner donc si tu peut m'aider merci bcp

  4. #4
    Membre averti
    Profil pro
    Inscrit en
    Juin 2009
    Messages
    21
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2009
    Messages : 21
    Par défaut
    en enlevant la ligne

    je n'ai plus d'erreur lorsque j'écris un message sur une seule ligne mais par exemple si j'écris un message sur 2 lignes après le décryptage il n'y a plus de renvoi a la ligne et donc tout le message est sur une seule ligne...

    Une petite aide serait la bienvenu merci....

  5. #5
    Invité(e)
    Invité(e)
    Par défaut
    Citation Envoyé par el_heinze Voir le message
    Bon je suis total débutant sur le C et ce code je l'ai trouver sur internet donc ce n'est pas le mien je ne comprends pas du tout quoi mettre a la place des deux erreurs que tu m'a donner donc si tu peut m'aider merci bcp
    Tu peux essayer d'analyser le code pour comprendre ce qu'il fait.
    En gros, le message à crypter est découpé caractère par caractère puis ajouté à un grand nombre.

    Ce grand nombre est codé dans le cypher.

    Le décodage passe par l'opération inverse.


    Citation Envoyé par el_heinze Voir le message
    en enlevant la ligne

    je n'ai plus d'erreur lorsque j'écris un message sur une seule ligne mais par exemple si j'écris un message sur 2 lignes après le décryptage il n'y a plus de renvoi a la ligne et donc tout le message est sur une seule ligne...
    Dans la fonction encrypt, tu supprimes les caractères de fin de lignes, tu ne peux donc pas les retrouver dans ton fichier décodé.

  6. #6
    Membre averti
    Profil pro
    Inscrit en
    Juin 2009
    Messages
    21
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2009
    Messages : 21
    Par défaut
    mais je comprend les fonctions pour la plupart car j'ai déja pas mal débugger le code avant de venir demander de l'aide mais je ne vois pas dans la fonction encrypt a quel moment est l'erreur ni par quoi la remplacer car la ligne que j'ai supprimer est au sein de la fonction decrypt et non encrypt...

    Comment faire pour que la fonction encrypt prenne bien en compte les retour a la ligne alors et non les remplacer par un espace...

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    else if((block[i] < 32) || (block[i] > 127))
    		block[i] = ' ';
    Le problème viendrais de la??? devrais je mettre un \n ou \r?

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 17
    Dernier message: 07/07/2009, 14h00
  2. empêcher le retour chariot après <ul>
    Par kkali dans le forum Mise en page CSS
    Réponses: 6
    Dernier message: 10/04/2009, 19h47
  3. [DOM] Problème de retour chariot après les noeuds
    Par Phenomenium dans le forum Bibliothèques et frameworks
    Réponses: 2
    Dernier message: 04/03/2008, 13h58
  4. Retour chariot non désiré après </ul>
    Par danyboy85 dans le forum Balisage (X)HTML et validation W3C
    Réponses: 4
    Dernier message: 06/12/2007, 09h08
  5. Tableau : retour chariot après chaque valeur
    Par kafifi dans le forum Langage
    Réponses: 3
    Dernier message: 13/07/2006, 17h54

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo