]> AND Private Git Repository - Cipher_code.git/blob - OneRoundIoT/OneRound/one_round_par2.cpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
efa6969574924a476d2b0b541de95eae6bbd34bd
[Cipher_code.git] / OneRoundIoT / OneRound / one_round_par2.cpp
1 //gcc pixmap_io.c  -c 
2 //g++ -O3 one_round_new.cpp pixmap_io.o  -o one_round_new -std=c++11   
3
4 #include <iostream>
5 #include <list>
6 #include<math.h>
7 #include<stdlib.h>
8 #include<stdio.h>
9 #include<string.h>
10 #include <fstream>
11 #include <sys/time.h>
12 #include <omp.h>
13
14 /*#include <cryptopp/hex.h>
15   #include <cryptopp/sha.h>
16   #include <cryptopp/osrng.h>
17   #include <cryptopp/secblock.h>
18 */
19
20
21 extern "C" {
22   int load_RGB_pixmap(char *filename, int *width, int *height, unsigned char**R_data, unsigned char**G_data, unsigned char**B_data);
23   void store_RGB_pixmap(char *filename, unsigned char *R_data, unsigned char *G_data, unsigned char *B_data, int width, int height);
24 }
25
26
27 //using namespace CryptoPP;
28 using namespace std;
29
30
31 int key_size=256;
32 int nb_test=1;
33 int ctr=0;
34
35
36
37
38
39
40
41 typedef unsigned char   uchar;
42
43
44 double TimeStart()
45 {
46   struct timeval tstart;
47   gettimeofday(&tstart,0);
48   return( (double) (tstart.tv_sec + tstart.tv_usec*1e-6) );
49 }
50
51 double TimeStop(double t)
52 {
53   struct timeval tend;
54
55   gettimeofday(&tend,0);
56   t = (double) (tend.tv_sec + tend.tv_usec*1e-6) - t;
57   return (t);
58 }
59
60
61
62
63
64
65 void inverse_tables(uchar *tab, int size_tab,uchar *inv_perm_tabs) {
66
67   for(int i=0;i<size_tab;i++) {
68     inv_perm_tabs[tab[i]] = i;
69   }
70
71 }
72
73 void inverse_tables_int(int *tab, int size_tab,int *inv_perm_tabs) {
74
75   for(int i=0;i<size_tab;i++) {
76     inv_perm_tabs[tab[i]] = i;
77   }
78
79 }
80
81
82
83 void rc4key(uchar *key, uchar *sc, int size_DK) {
84
85   for(int i=0;i<256;i++) {
86     sc[i]=i;
87   }
88
89
90   uchar j0 = 0;
91   for(int i0=0; i0<256; i0++) {
92     j0 = (j0 + sc[i0] + key[i0%size_DK] )&0xFF;
93     uchar tmp = sc[i0];
94     sc[i0] = sc[j0 ];
95     sc[j0] = tmp;
96   }
97 }
98
99
100
101 void rc4keyperm(uchar *key,int len, int rp,int *sc, int size_DK) {
102
103   //sc=1:len;
104
105
106   
107   for (int i=0;i<len;i++) {
108     sc[i]=i;
109   }
110   for (int it = 0; it < rp; it++) {
111     int j0 = 1;
112     for(int i0 = 0; i0<len; i0++) {
113       j0 = (j0 + sc[i0] + sc[j0] + key[i0%size_DK] )% len;
114       int tmp = sc[i0];
115       sc[i0] = sc[j0];
116       sc[j0] = tmp;
117     }
118
119   }
120 }
121
122 void prga(uchar *sc, int ldata, uchar *r) {
123   uchar i0=0;
124   uchar j0=0;
125
126   for (int it=0; it<ldata; it++) {
127     i0 = ((i0+1)&0xFE); //%255);
128     j0 = (j0 + sc[i0])&0xFF;
129     uchar tmp = sc[i0];
130     sc[i0] = sc[j0];
131     sc[j0] = tmp;
132     r[it]=sc[(sc[i0]+sc[j0])&0xFF];
133   }
134 }
135
136 void rotate(uchar *RM1, uchar *RM2, int size, int n)
137 {
138   int i;
139   for (i = 0; i< size-n; i++)
140     RM2[i+n] = RM1[i];
141
142   for (i = 0; i< n; i++)
143     RM2[i] = RM1[size-n-1+i];
144 }
145
146
147 template<int h2>
148 void encrypt_ctr(uchar* seq_in, uchar *seq_out, int len,uchar* RM1,int *Pbox, int *PboxRM, uchar *Sbox1, uchar *Sbox2, int enc, int num) {
149
150
151
152
153   int loc_len=len/num;
154   
155 #pragma omp parallel for
156   for(int p=0;p<num;p++) {
157
158     int id=omp_get_thread_num();
159     uchar fX[h2];
160     uchar RM2[h2];
161     
162     for(int a=0;a<h2;a++) {
163       RM2[a]=RM1[id*h2+a];           //Warning according to the size of h2, we can be outsize of Sbox1[a]
164     }
165
166
167     uchar X[h2];
168
169     for(int a=0;a<h2;a++) {
170       X[a]=Sbox1[(a+10*id)&0xFF];           //Warning according to the size of h2, we can be outsize of Sbox1[a]
171     }
172
173
174     
175     int offset=p*loc_len;
176
177     
178     for(int it=offset;it<offset+loc_len;it++) {
179       int ind1,ind2;
180
181
182       //cout<<id<<" "<<it<<endl;
183     
184       if(enc) {
185         ind1=it*h2;
186         ind2=Pbox[it]*h2;
187       }
188       else {
189         ind2=it*h2;
190         ind1=Pbox[it]*h2;
191       }
192   
193
194       /*for(int a=0;a<h2;a+=4){
195         fX[a]=RM1[X[a]];
196         fX[a+1]=RM1[X[a+1]];
197         fX[a+2]=RM1[X[a+2]];
198         fX[a+3]=RM1[X[a+3]];
199         }*/
200
201       for(int a=0;a<h2;a+=4){
202         fX[a]=X[a];
203         fX[a+1]=X[a+1];
204         fX[a+2]=X[a+2];
205         fX[a+3]=X[a+3];
206       }
207
208
209
210     
211       /*   if(it<513) {
212            for(int a=0;a<h2;a++)
213            printf("%d ",fX[a]);
214            printf("\n");
215            }*/
216     
217       *(int*)&fX[0]^=it;
218
219       /* if(it<513) {
220          for(int a=0;a<h2;a++)
221          printf("%d ",fX[a]);
222          printf("\n");
223          }*/
224
225
226   
227     
228       /*for(int a=0;a<h2;a+=4) {
229         fX[id*h2+a]=fX[id*h2+a]^RM1[id*h2+a];
230         fX[id*h2+a+1]=fX[id*h2+a+1]^RM1[id*h2+a+1];
231         fX[id*h2+a+2]=fX[id*h2+a+2]^RM1[id*h2+a+2];
232         fX[id*h2+a+3]=fX[id*h2+a+3]^RM1[id*h2+a+3];
233         }*/
234
235
236
237     
238       for(int a=0;a<h2;a+=4) {
239         fX[a]=Sbox2[fX[a]];
240         fX[a+1]=Sbox2[fX[a+1]];
241         fX[a+2]=Sbox2[fX[a+2]];
242         fX[a+3]=Sbox2[fX[a+3]];
243       }
244
245 //    rotate(RM1, &RM2[id*h2], h2, Pbox[it]%h2);
246     
247       for(int a=0;a<h2;a+=4) {
248         RM2[a]=RM2[PboxRM[a]];
249         RM2[a+1]=RM2[PboxRM[a+1]];
250         RM2[a+2]=RM2[PboxRM[a+2]];
251         RM2[a+3]=RM2[PboxRM[a+3]];
252       }
253     
254       for(int a=0;a<h2;a+=4) {
255         fX[a]=fX[a]^RM2[a];
256         fX[a+1]=fX[a+1]^RM2[a+1];
257         fX[a+2]=fX[a+2]^RM2[a+2];
258         fX[a+3]=fX[a+3]^RM2[a+3];
259       }
260
261
262     
263       for(int a=0;a<h2;a+=4) {
264         fX[a]=fX[a]^seq_in[ind2+a];
265         fX[a+1]=fX[a+1]^seq_in[ind2+a+1];
266         fX[a+2]=fX[a+2]^seq_in[ind2+a+2];
267         fX[a+3]=fX[a+3]^seq_in[ind2+a+3];
268       }
269
270  
271       for(int a=0;a<h2;a+=4) {
272         seq_out[ind1+a]=fX[a];
273         seq_out[ind1+a+1]=fX[a+1];
274         seq_out[ind1+a+2]=fX[a+2];
275         seq_out[ind1+a+3]=fX[a+3];
276       }
277     
278       /*for(int a=0;a<h2;a+=4) {
279         RM1[id*h2+a]=RM1[id*h2+PboxRM[a]];
280         RM1[id*h2+a+1]=RM1[id*h2+PboxRM[a+1]];
281         RM1[id*h2+a+2]=RM1[id*h2+PboxRM[a+2]];
282         RM1[id*h2+a+3]=RM1[id*h2+PboxRM[a+3]];
283         }
284       */
285
286     
287     }
288   }
289
290 }
291
292
293
294
295 template<int h2>
296 void encrypt(uchar* seq_in, uchar *seq_out, int len,uchar* RM1,int *Pbox, int *PboxRM, uchar *Sbox1, uchar *Sbox2, int debug, int num) {
297
298
299 /*  uchar *X=new uchar[h2];
300     uchar *fX=new uchar[h2];
301     unsigned int *lX=(unsigned int*)X;
302     unsigned int *lseq_in=(unsigned int*)seq_in;
303 */
304
305 //  unsigned int *lX=(unsigned int*)X;
306 //  unsigned int *lseq_in=(unsigned int*)seq_in;
307
308
309   int loc_len=len/num;
310   
311 #pragma omp parallel for
312   for(int p=0;p<num;p++) {
313
314     int id=omp_get_thread_num();
315
316     uchar fX[h2];
317
318     
319     uchar RM2[h2];
320     for(int a=0;a<h2;a++) {
321       RM2[a]=RM1[id*h2+a];           
322     }
323
324   
325     int offset=p*loc_len;
326
327     
328     for(int it=offset;it<offset+loc_len;it++) {
329
330   
331
332       int ind1=it*h2;
333       int ind2=Pbox[it]*h2;
334
335  
336       for(int a=0;a<h2;a+=4) {
337         fX[a]=seq_in[ind2+a];
338         fX[a+1]=seq_in[ind2+a+1];
339         fX[a+2]=seq_in[ind2+a+2];
340         fX[a+3]=seq_in[ind2+a+3];
341       }
342
343
344       for(int a=0;a<h2;a+=4){
345         fX[a]=Sbox1[fX[a]];
346         fX[a+1]=Sbox1[fX[a+1]];
347         fX[a+2]=Sbox1[fX[a+2]];
348         fX[a+3]=Sbox1[fX[a+3]];
349       }
350
351
352       for(int a=0;a<h2;a+=4) {
353         fX[a]=fX[a]^RM2[a];
354         fX[a+1]=fX[a+1]^RM2[a+1];
355         fX[a+2]=fX[a+2]^RM2[a+2];
356         fX[a+3]=fX[a+3]^RM2[a+3];
357       }
358
359
360
361
362       for(int a=0;a<h2;a+=4) {
363         seq_out[ind1+a]=Sbox2[fX[a]];
364         seq_out[ind1+a+1]=Sbox2[fX[a+1]];
365         seq_out[ind1+a+2]=Sbox2[fX[a+2]];
366         seq_out[ind1+a+3]=Sbox2[fX[a+3]];
367       }
368
369
370     for(int a=0;a<h2;a+=4) {
371         RM2[a]=RM2[PboxRM[a]];
372         RM2[a+1]=RM2[PboxRM[a+1]];
373         RM2[a+2]=RM2[PboxRM[a+2]];
374         RM2[a+3]=RM2[PboxRM[a+3]];
375       }
376       
377
378
379
380     }
381     
382   }
383 }
384
385
386
387
388 template<int h2>
389 void decrypt(uchar* seq_in, uchar *seq_out, int len,uchar* RM1,int *Pbox, int *PboxRM, uchar *Inv_Sbox1, uchar *Inv_Sbox2, int debug, int num) {
390
391
392   /*uchar *fX=new uchar[h2];
393     uchar *Inv_Sbox1=new uchar[256];
394     uchar *Inv_Sbox2=new uchar[256];
395   */
396
397
398
399
400
401   int loc_len=len/num;
402   
403 #pragma omp parallel for
404   for(int p=0;p<num;p++) {
405
406     int id=omp_get_thread_num();
407     uchar RM2[h2];
408     for(int a=0;a<h2;a++) {
409       RM2[a]=RM1[id*h2+a];           //Warning according to the size of h2, we can be outsize of Sbox1[a]
410     }
411     uchar fX[h2];
412   
413     int offset=p*loc_len;
414
415     
416     for(int it=offset;it<offset+loc_len;it++) {
417
418
419       int ind1=it*h2;
420       int ind2=Pbox[it]*h2;
421
422
423
424
425       for(int a=0;a<h2;a+=4) {
426         fX[a]=seq_in[ind1+a];
427         fX[a+1]=seq_in[ind1+a+1];
428         fX[a+2]=seq_in[ind1+a+2];
429         fX[a+3]=seq_in[ind1+a+3];
430             
431       }
432       for(int a=0;a<h2;a+=4) {
433         fX[a]=Inv_Sbox2[fX[a]];
434         fX[a+1]=Inv_Sbox2[fX[a+1]];
435         fX[a+2]=Inv_Sbox2[fX[a+2]];
436         fX[a+3]=Inv_Sbox2[fX[a+3]];
437       }
438
439
440
441       for(int a=0;a<h2;a+=4) {
442         fX[a]=fX[a]^RM2[a];
443         fX[a+1]=fX[a+1]^RM2[a+1];
444         fX[a+2]=fX[a+2]^RM2[a+2];
445         fX[a+3]=fX[a+3]^RM2[a+3];      
446       }
447
448     
449       for(int a=0;a<h2;a+=4) {
450         seq_out[ind2+a]=Inv_Sbox1[fX[a]];
451         seq_out[ind2+a+1]=Inv_Sbox1[fX[a+1]];
452         seq_out[ind2+a+2]=Inv_Sbox1[fX[a+2]];
453         seq_out[ind2+a+3]=Inv_Sbox1[fX[a+3]];
454       }
455       for(int a=0;a<h2;a+=4) {
456         RM2[a]=RM2[PboxRM[a]];
457         RM2[a+1]=RM2[PboxRM[a+1]];
458         RM2[a+2]=RM2[PboxRM[a+2]];
459         RM2[a+3]=RM2[PboxRM[a+3]];
460         }
461
462      
463     }
464
465
466   }
467 }
468
469
470
471 int main(int argc, char** argv) {
472
473
474   int h=32;
475   int lena=0;
476   int size_buf=1;
477
478
479   
480   for(int i=1; i<argc; i++){
481     if(strncmp(argv[i],"nb",2)==0)    nb_test = atoi(&(argv[i][2]));    //nb of test         
482     if(strncmp(argv[i],"ctr",3)==0) ctr = atoi(&(argv[i][3]));          //CTR ? 1  otherwise CBC like
483     if(strncmp(argv[i],"h",1)==0) h = atoi(&(argv[i][1]));          //size of block
484     if(strncmp(argv[i],"sizebuf",7)==0) size_buf = atoi(&(argv[i][7]));          //SIZE of the buffer
485     if(strncmp(argv[i],"lena",4)==0) lena = atoi(&(argv[i][4]));          //Use Lena or buffer
486   }
487
488 /*  printf("nb times %d\n",nb_test);
489     printf("ctr %d\n",ctr);
490     printf("h %d\n",h);
491     printf("lena %d\n",lena);
492     printf("size_buf %d\n",size_buf);
493 */
494   int h2=h*h;
495   
496
497       
498   int seed=time(NULL);
499 //  cout<<seed<<endl;
500   srand48(seed);
501
502   uchar Secretkey[key_size];
503
504   uchar counter[key_size];
505
506   for(int i=0;i<key_size;i++) {
507     Secretkey[i]=lrand48()&0xFF;
508     counter[i]=lrand48()&0xFF;
509   }
510
511   
512   int size = 64;
513   uchar DK[size];
514
515
516
517
518   int width;
519   int height;
520
521   uchar *data_R, *data_G, *data_B;
522   int imsize;
523   uchar *buffer;
524   
525   if(lena==1) {
526     load_RGB_pixmap("lena.ppm", &width, &height, &data_R, &data_G, &data_B);
527     imsize=width*height*3;
528 //  load_RGB_pixmap("No_ecb_mode_picture.ppm", &width, &height, &data_R, &data_G, &data_B);
529   }
530   else {
531     width=height=size_buf;
532     imsize=width*height;
533     buffer=new uchar[imsize];
534     for(int i=0;i<imsize;i++) {
535       buffer[i]=lrand48();
536     }
537   }
538
539
540
541   
542   
543   uchar* seq= new uchar[imsize];
544   uchar* seq2= new uchar[imsize];
545
546   int oneD=width*height;
547   if(lena) {
548     for(int i=0;i<oneD;i++) {
549       seq[i]=data_R[i];
550       seq[oneD+i]=data_G[i];
551       seq[2*oneD+i]=data_B[i];
552     }
553   }
554   else {
555     for(int i=0;i<oneD;i++) {
556       seq[i]=buffer[i];
557     }
558   }
559
560
561
562   
563
564   int total_len=imsize;
565   int rp=1;
566   int len= total_len/h2;
567
568
569   
570   uchar *mix=new uchar[256];
571
572
573
574     
575   for (int i = 0; i < 256 ; i++) {
576     mix[i]=Secretkey[i]^counter[i];
577   }
578
579   
580 //  cout<<"hash "<<endl;
581   for (int i = 0; i < 64 ; i++) {
582 //    DK[i]=digest[i];
583     DK[i]=mix[i];
584   }
585
586
587
588   
589   uchar Sbox1[256];
590   rc4key(DK, Sbox1, 16);
591
592   uchar Sbox2[256];
593   rc4key(&DK[16], Sbox2, 16);
594   uchar Inv_Sbox1[256];
595   uchar Inv_Sbox2[256];
596   inverse_tables(Sbox1,256,Inv_Sbox1);
597   inverse_tables(Sbox2,256,Inv_Sbox2);
598
599
600
601   
602   uchar sc[256];
603   rc4key(&DK[32], sc, 16);
604
605   int num=omp_get_max_threads();
606   cout<<"num "<<num<<endl;
607   
608   
609
610
611   
612   
613     
614   
615
616
617   uchar RM1[num*(h * h)];
618   uchar RM2[num*(h * h)];
619   /*for(int i=0;i<num;i++) {
620     
621     rc4key(&DK[48+i*16], sc, 16);
622     prga(sc, h2, &RM1[h2*i]);
623     for(int a=0;a<h2;a++) {
624       cout<<(int)RM1[h2*i+a]<<" ";
625     }
626     cout<<endl<<endl;
627   }*/
628
629   rc4key(&DK[48], sc, 16);
630   prga(sc, h2*num, RM1);
631
632   rc4key(&DK[64], sc, 16);
633   prga(sc, h2, RM2);
634
635
636
637
638   
639 //  cout<<len<<endl;
640   int *Pbox=new int[len];
641
642
643   
644   int *PboxRM=new int[h2];
645
646   rc4keyperm(&DK[48+16*num], len, rp, Pbox, 16);
647
648
649   rc4keyperm(RM2, h2, rp, PboxRM, h2);
650
651   for(int i=0;i<num*h2;i++) {
652     RM2[i]=RM1[i];
653   }
654  
655   double time=0;
656   double t=TimeStart();
657
658   int i;
659   switch(h) {
660   case 4: 
661     for(i=0;i<nb_test;i++)
662     {
663       if(ctr)
664         encrypt_ctr<4*4>(seq, seq2,len,RM1,Pbox,PboxRM,Sbox1,Sbox2,1,num);
665       else
666         encrypt<4*4>(seq, seq2,len,RM1,Pbox,PboxRM,Sbox1,Sbox2,0,num);
667       
668     }
669     break;
670   case 8: 
671     for(i=0;i<nb_test;i++)
672     {
673       if(ctr)
674         encrypt_ctr<8*8>(seq, seq2,len,RM1,Pbox,PboxRM,Sbox1,Sbox2,1,num);
675       else
676         encrypt<8*8>(seq, seq2,len,RM1,Pbox,PboxRM,Sbox1,Sbox2,0,num);
677       
678     }
679     break;
680   case 16: 
681     for(i=0;i<nb_test;i++)
682     {
683       if(ctr)
684         encrypt_ctr<16*16>(seq, seq2,len,RM1,Pbox,PboxRM,Sbox1,Sbox2,1,num);
685       else
686         encrypt<16*16>(seq, seq2,len,RM1,Pbox,PboxRM,Sbox1,Sbox2,0,num);
687       
688     }
689     break;
690   case 32: 
691     for(i=0;i<nb_test;i++)
692     {
693       if(ctr)
694         encrypt_ctr<32*32>(seq, seq2,len,RM1,Pbox,PboxRM,Sbox1,Sbox2,1,num);
695       else
696         encrypt<32*32>(seq, seq2,len,RM1,Pbox,PboxRM,Sbox1,Sbox2,0,num);
697       
698     }
699     break;
700   case 64: 
701     for(i=0;i<nb_test;i++)
702     {
703       if(ctr)
704         encrypt_ctr<64*64>(seq, seq2,len,RM1,Pbox,PboxRM,Sbox1,Sbox2,1,num);
705       else
706         encrypt<64*64>(seq, seq2,len,RM1,Pbox,PboxRM,Sbox1,Sbox2,0,num);
707       
708     }
709     break;
710   case 128: 
711     for(i=0;i<nb_test;i++)
712     {
713       if(ctr)
714         encrypt_ctr<128*128>(seq, seq2,len,RM1,Pbox,PboxRM,Sbox1,Sbox2,1,num);
715       else
716         encrypt<128*128>(seq, seq2,len,RM1,Pbox,PboxRM,Sbox1,Sbox2,0,num);
717       
718     }
719     break;
720   }
721   time+=TimeStop(t);
722   cout<<"Time encrypt "<<time<<endl;
723
724
725   if(lena) {
726     for(int i=0;i<oneD;i++) {
727       data_R[i]=seq2[i];
728       data_G[i]=seq2[oneD+i];
729       data_B[i]=seq2[2*oneD+i];
730     }
731     store_RGB_pixmap("lena2.ppm", data_R, data_G, data_B, width, height);
732   }
733   
734
735
736
737   for(int i=0;i<imsize;i++) {
738     seq[i]=0;
739   }
740
741   
742   time=0;
743   t=TimeStart();
744   switch(h) {
745   case 4:
746     for(i=0;i<nb_test;i++) {
747       if(ctr)
748         encrypt_ctr<4*4>(seq2, seq,len,RM2,Pbox,PboxRM,Sbox1,Sbox2,0,num);
749       else
750         decrypt<4*4>(seq2,seq,len,RM2,Pbox,PboxRM,Inv_Sbox1,Inv_Sbox2,0,num);
751     }
752     break;
753   case 8:
754     for(i=0;i<nb_test;i++) {
755       if(ctr)
756         encrypt_ctr<8*8>(seq2, seq,len,RM2,Pbox,PboxRM,Sbox1,Sbox2,0,num);
757       else
758         decrypt<8*8>(seq2,seq,len,RM2,Pbox,PboxRM,Inv_Sbox1,Inv_Sbox2,0,num);
759     }
760     break;
761   case 16:
762     for(i=0;i<nb_test;i++) {
763       if(ctr)
764         encrypt_ctr<16*16>(seq2, seq,len,RM2,Pbox,PboxRM,Sbox1,Sbox2,0,num);
765       else
766         decrypt<16*16>(seq2,seq,len,RM2,Pbox,PboxRM,Inv_Sbox1,Inv_Sbox2,0,num);
767     }
768     break;
769   case 32:
770     for(i=0;i<nb_test;i++) {
771       if(ctr)
772         encrypt_ctr<32*32>(seq2, seq,len,RM2,Pbox,PboxRM,Sbox1,Sbox2,0,num);
773       else
774         decrypt<32*32>(seq2,seq,len,RM2,Pbox,PboxRM,Inv_Sbox1,Inv_Sbox2,0,num);
775     }
776     break;
777   case 64:
778     for(i=0;i<nb_test;i++) {
779       if(ctr)
780         encrypt_ctr<64*64>(seq2, seq,len,RM2,Pbox,PboxRM,Sbox1,Sbox2,0,num);
781       else
782         decrypt<64*64>(seq2,seq,len,RM2,Pbox,PboxRM,Inv_Sbox1,Inv_Sbox2,0,num);
783     }
784     break;
785   case 128:
786     for(i=0;i<nb_test;i++) {
787       if(ctr)
788         encrypt_ctr<128*128>(seq2, seq,len,RM2,Pbox,PboxRM,Sbox1,Sbox2,0,num);
789       else
790         decrypt<128*128>(seq2,seq,len,RM2,Pbox,PboxRM,Inv_Sbox1,Inv_Sbox2,0,num);
791     }
792     break;  
793
794     
795   }
796
797   time+=TimeStop(t);
798   cout<<"Time decrypt "<<time<<endl;
799
800   if(lena) {
801     for(int i=0;i<oneD;i++) {
802       data_R[i]=seq[i];
803       data_G[i]=seq[oneD+i];
804       data_B[i]=seq[2*oneD+i];
805     }
806     store_RGB_pixmap("lena3.ppm", data_R, data_G, data_B, width, height);
807   }
808   else {
809     bool equal=true;
810     for(int i=0;i<imsize;i++) {
811       //cout<<"sol"<<(int)buffer[i]<<" "<<(int)seq[i]<<" "<<endl;
812       if(buffer[i]!=seq[i]) {
813         equal=false;
814       }
815     }
816     cout<<"RESULT CORRECT: "<<equal<<endl;
817   }
818   
819
820
821   return 0;
822 }