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

Private GIT Repository
9277f1f5e14c54cf4787f2fc6de70ae4a27ff442
[Cipher_code.git] / OneRoundIoT / OneRound / rc4_hash3.cpp
1 //gcc pixmap_io.c  -c 
2 //g++ -O3 one_round_hash_new.cpp pixmap_io.o  -o one_round_hash_new -std=c++11   
3
4 //
5
6
7 #include <iostream>
8 #include <list>
9 #include<math.h>
10 #include<stdlib.h>
11 #include<stdio.h>
12 #include<string.h>
13 #include <fstream>
14 #include <sys/time.h>
15
16 /*#include <cryptopp/hex.h>
17 #include <cryptopp/sha.h>
18 #include <cryptopp/osrng.h>
19 #include <cryptopp/secblock.h>
20 */
21
22
23 extern "C" {
24   int load_RGB_pixmap(char *filename, int *width, int *height, unsigned char**R_data, unsigned char**G_data, unsigned char**B_data);
25   void store_RGB_pixmap(char *filename, unsigned char *R_data, unsigned char *G_data, unsigned char *B_data, int width, int height);
26 }
27
28
29 //using namespace CryptoPP;
30 using namespace std;
31
32
33 int key_size=256;
34 int nb_test=1;
35 int ctr=0;
36
37
38
39
40
41
42
43 typedef unsigned char   uchar;
44
45
46 double TimeStart()
47 {
48   struct timeval tstart;
49   gettimeofday(&tstart,0);
50   return( (double) (tstart.tv_sec + tstart.tv_usec*1e-6) );
51 }
52
53 double TimeStop(double t)
54 {
55   struct timeval tend;
56
57   gettimeofday(&tend,0);
58   t = (double) (tend.tv_sec + tend.tv_usec*1e-6) - t;
59   return (t);
60 }
61
62
63
64
65
66
67 void inverse_tables(uchar *tab, int size_tab,uchar *inv_perm_tabs) {
68
69   for(int i=0;i<size_tab;i++) {
70     inv_perm_tabs[tab[i]] = i;
71   }
72
73 }
74
75 void inverse_tables_int(int *tab, int size_tab,int *inv_perm_tabs) {
76
77   for(int i=0;i<size_tab;i++) {
78     inv_perm_tabs[tab[i]] = i;
79   }
80
81 }
82
83
84
85 void rc4key(uchar *key, uchar *sc, int size_DK) {
86
87   for(int i=0;i<256;i++) {
88     sc[i]=i;
89   }
90
91
92   uchar j0 = 0;
93   for(int i0=0; i0<256; i0++) {
94     j0 = (j0 + sc[i0] + key[i0%size_DK] )&0xFF;
95     uchar tmp = sc[i0];
96     sc[i0] = sc[j0 ];
97     sc[j0] = tmp;
98   }
99 }
100
101
102
103 void rc4keyperm(uchar *key,int len, int rp,int *sc, int size_DK) {
104
105   //sc=1:len;
106
107
108   
109   for (int i=0;i<len;i++) {
110     sc[i]=i;
111   }
112   for (int it = 0; it < rp; it++) {
113     int j0 = 1;
114     for(int i0 = 0; i0<len; i0++) {
115       j0 = (j0 + sc[i0] + sc[j0] + key[i0%size_DK] )% len;
116       int tmp = sc[i0];
117       sc[i0] = sc[j0];
118       sc[j0] = tmp;
119     }
120
121   }
122 }
123
124 void prga(uchar *sc, uchar *X, int ldata, uchar *r, int h) {
125   uchar i0=0;
126   uchar j0=0;
127
128   for (int it=0; it<ldata; it++) {
129     i0 = X[(i0+1)&(h-1)];
130     j0 = (j0 + sc[i0]);
131     uchar tmp = sc[i0];
132     sc[i0] = sc[j0];
133     sc[j0] = tmp;
134     r[it]=sc[i0];//sc[(sc[i0]+sc[j0])&255];
135   }
136 }
137
138 inline uchar  circ(uchar x,int n) {return (x << n) | (x >> (8 - n));}
139
140
141 inline static uint64_t xorshift64( const uint64_t state)
142 {
143   uint64_t x = state;
144   x^= x << 13;
145   x^= x >> 7;
146   x^= x << 17;
147   return x;
148 }
149
150
151 inline static  uint64_t splitmix64(uint64_t index) {
152   uint64_t z = (index + UINT64_C(0x9E3779B97F4A7C15));
153   z = (z ^ (z >> 30)) * UINT64_C(0xBF58476D1CE4E5B9);
154   z = (z ^ (z >> 27)) * UINT64_C(0x94D049BB133111EB);
155   return z ^ (z >> 31);
156 }
157
158
159
160
161
162
163
164 //the proposed hash function, which is based on DSD structure. Sensitivity is ensured by employing the binary diffusion
165
166 void hash_DSD_BIN(uint64_t * ss, uint64_t* rm,int len,int h) {
167
168
169   int ind1=0;
170
171
172
173
174   int a=0;
175   
176   for(int it=0;it<len;it++) {
177     rm[0]=rm[h-1]^ss[ind1];
178     rm[0]=xorshift64(rm[0] );
179     for(a=1;a<h;a++) {
180       rm[a]=rm[a-1]^ss[ind1+a];
181       rm[a]=xorshift64(rm[a]);
182     }
183
184     ind1+=h;
185   }
186
187  
188 }
189
190
191
192
193
194   
195
196
197
198   
199 int main(int argc, char** argv) {
200
201
202   int h=16;
203   int lena=0;
204   int size_buf=1;
205   int change=0;
206
207   
208   for(int i=1; i<argc; i++){
209     if(strncmp(argv[i],"nb",2)==0)    nb_test = atoi(&(argv[i][2]));    //nb of test         
210     if(strncmp(argv[i],"h",1)==0) h = atoi(&(argv[i][1]));          //size of block
211     if(strncmp(argv[i],"sizebuf",7)==0) size_buf = atoi(&(argv[i][7]));          //SIZE of the buffer
212     if(strncmp(argv[i],"lena",4)==0) lena = atoi(&(argv[i][4]));          //Use Lena or buffer
213     if(strncmp(argv[i],"c",1)==0) change = atoi(&(argv[i][1]));          //Use Lena or buffer
214   }
215
216
217   cout<<size_buf<<endl;
218   int seed=12;//time(NULL);
219   cout<<seed<<endl;
220   srand48(seed);
221
222   uchar Secretkey[key_size];
223
224   uchar counter[key_size];
225
226   for(int i=0;i<key_size;i++) {
227     Secretkey[i]=lrand48()&0xFF;
228     counter[i]=lrand48()&0xFF;
229   }
230   
231   int size = 64;
232   uchar DK[size];
233
234
235
236
237   int width;
238   int height;
239
240   uchar *data_R, *data_G, *data_B;
241   int imsize;
242   uchar *buffer;
243   
244   if(lena==1) {
245     load_RGB_pixmap("lena.ppm", &width, &height, &data_R, &data_G, &data_B);
246     imsize=width*height*3;
247 //  load_RGB_pixmap("No_ecb_mode_picture.ppm", &width, &height, &data_R, &data_G, &data_B);
248   }
249   else {
250     imsize=size_buf;
251     buffer=new uchar[imsize];
252     for(int i=0;i<imsize;i++) {
253       buffer[i]=lrand48();
254     }
255   }
256
257
258   
259   
260   uchar* seq= new uchar[imsize];
261   uchar* seq2= new uchar[imsize];
262
263   int oneD;
264   if(lena) {
265     oneD=width*height;
266     for(int i=0;i<oneD;i++) {
267       seq[i]=data_R[i];
268       seq[oneD+i]=data_G[i];
269       seq[2*oneD+i]=data_B[i];
270     }
271   }
272   else {
273     oneD=imsize;
274     for(int i=0;i<oneD;i++) {
275       seq[i]=buffer[i];
276     }
277   }
278
279   printf("seq 4 %d\n",seq[4]);
280   if(change==1) {
281     
282     seq[4]++;
283     //    seq[5]--;
284   }
285   if(change==2) {
286     
287     seq[9]++;
288     //   seq[10]--;
289   }
290
291   printf("seq 4 %d\n",seq[4]);
292
293   
294   
295
296   int total_len=imsize;
297   int rp=1;
298   int len= total_len/h;
299   cout<<len<<endl;
300
301   
302   uchar *mix=new uchar[256];
303
304
305
306     
307   for (int i = 0; i < 256 ; i++) {
308     mix[i]=Secretkey[i]^counter[i];
309   }
310
311   
312 //  cout<<"hash "<<endl;
313   for (int i = 0; i < 64 ; i++) {
314 //    DK[i]=digest[i];
315     DK[i]=mix[i];
316     //cout<<(int)DK[i]<<" ";
317   }
318   //cout<<endl;
319
320
321
322
323
324   uchar Sbox1[256];
325   uchar sc[256];  
326   uchar RM1[h];
327
328
329
330   double time=0;
331   double t=TimeStart();  
332   rc4key(DK, Sbox1, 8);
333   
334   rc4key(&DK[16], sc, 8);
335   
336
337
338   
339   prga(sc, sc,h,RM1,h);
340   
341   
342   
343
344   
345   time+=TimeStop(t);
346   cout<<"Time initializaton "<<time<<endl;
347
348
349
350   cout<<"imsize "<<imsize<<endl;
351   
352 /*  for(int i=0;i<imsize;i++){
353     cout<<(int)seq[i]<<" ";
354   }
355   cout<<endl;
356 */
357
358
359   
360   time=0;
361   uint64_t *rm=(uint64_t*)RM1;
362   uint64_t *ss=(uint64_t*)seq;
363
364
365
366   t=TimeStart();
367   for(int i=0;i<nb_test;i++)
368   {
369     hash_DSD_BIN(ss, rm,len,h>>3);
370   }
371
372
373   
374   
375   time+=TimeStop(t);
376   cout<<"Hash Time  "<<time<<endl;
377   cout<<(double)imsize*nb_test/time<<"\t";
378
379   for(int i=0;i<h;i++){
380     cout<<(int)RM1[i]<<" ";
381   }
382   cout<<endl;
383
384   //  cout<<splitmix64(2490)<<endl;
385   // cout<<splitmix64(2489)<<endl;
386   
387
388   return 0;
389 }