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

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