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

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