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

Private GIT Repository
new
[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 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 uint xorshift32(const uint t)
150 {
151   /* Algorithm "xor" from p. 4 of Marsaglia, "Xorshift RNGs" */
152   uint x = t;
153   x ^= x << 13;
154   x ^= x >> 17;
155   x ^= x << 5;
156   return x;
157 }
158
159 static inline uint64_t splitmix64(uint64_t index) {
160   uint64_t z = (index + UINT64_C(0x9E3779B97F4A7C15));
161   z = (z ^ (z >> 30)) * UINT64_C(0xBF58476D1CE4E5B9);
162   z = (z ^ (z >> 27)) * UINT64_C(0x94D049BB133111EB);
163   return z ^ (z >> 31);
164 }
165
166
167
168
169
170
171
172 //the proposed hash function, which is based on DSD structure. Sensitivity is ensured by employing the binary diffusion
173
174 void hash_DSD_BIN(uchar* seq_in, uchar* RM1,int len, uchar *S, int h) {
175
176
177   // Goal: Calculate the hash value
178   // Output: RM (hash value)
179
180 //  uchar *X=new uchar[h2];
181 //  uchar *fX=new uchar[h2];
182   uchar X[h];
183   int ind1,ind2;
184
185
186   uint32_t *rm=(uint32_t*)RM1;
187   uint32_t *xx=(uint32_t*)X;
188   uint32_t *ss=(uint32_t*)seq_in;
189
190
191   
192   for(int it=0;it<len;it++) {
193     //ind1=Pbox[it]*h;
194     //ind2=Pbox[(it+len/2)]*h;
195
196     ind1=it*h/4;
197     // Mix with dynamic RM
198     uint64_t sum=0;
199     /*     for(int a=0;a<h;a+=4) {
200        X[a]=RM1[a]^seq_in[ind1+a];
201        X[a+1]=RM1[a+1]^seq_in[ind1+a+1];
202        X[a+2]=RM1[a+2]^seq_in[ind1+a+2];
203        X[a+3]=RM1[a+3]^seq_in[ind1+a+3];
204      }
205     */
206
207     
208      for(int a=0;a<h/4;a++) {
209        xx[a]=rm[a]^ss[ind1+a];
210        sum+=xx[a];
211      }
212
213
214
215
216      rm[0]=xorshift32(sum);
217      for(int a=1;a<h/4;a++) {
218        rm[a]^=xorshift32(rm[a-1]);
219      }
220
221
222   }
223
224  
225 }
226
227
228
229
230
231   
232
233
234
235   
236 int main(int argc, char** argv) {
237
238
239   int h=16;
240   int lena=0;
241   int size_buf=1;
242   int change=0;
243
244   
245   for(int i=1; i<argc; i++){
246     if(strncmp(argv[i],"nb",2)==0)    nb_test = atoi(&(argv[i][2]));    //nb of test         
247     if(strncmp(argv[i],"h",1)==0) h = atoi(&(argv[i][1]));          //size of block
248     if(strncmp(argv[i],"sizebuf",7)==0) size_buf = atoi(&(argv[i][7]));          //SIZE of the buffer
249     if(strncmp(argv[i],"lena",4)==0) lena = atoi(&(argv[i][4]));          //Use Lena or buffer
250     if(strncmp(argv[i],"c",1)==0) change = atoi(&(argv[i][1]));          //Use Lena or buffer
251   }
252
253
254   cout<<size_buf<<endl;
255   int seed=12;//time(NULL);
256   cout<<seed<<endl;
257   srand48(seed);
258
259   uchar Secretkey[key_size];
260
261   uchar counter[key_size];
262
263   for(int i=0;i<key_size;i++) {
264     Secretkey[i]=lrand48()&0xFF;
265     counter[i]=lrand48()&0xFF;
266   }
267   
268   int size = 64;
269   uchar DK[size];
270
271
272
273
274   int width;
275   int height;
276
277   uchar *data_R, *data_G, *data_B;
278   int imsize;
279   uchar *buffer;
280   
281   if(lena==1) {
282     load_RGB_pixmap("lena.ppm", &width, &height, &data_R, &data_G, &data_B);
283     imsize=width*height*3;
284 //  load_RGB_pixmap("No_ecb_mode_picture.ppm", &width, &height, &data_R, &data_G, &data_B);
285   }
286   else {
287     imsize=size_buf;
288     buffer=new uchar[imsize];
289     for(int i=0;i<imsize;i++) {
290       buffer[i]=lrand48();
291     }
292   }
293
294
295   
296   
297   uchar* seq= new uchar[imsize];
298   uchar* seq2= new uchar[imsize];
299
300   int oneD;
301   if(lena) {
302     oneD=width*height;
303     for(int i=0;i<oneD;i++) {
304       seq[i]=data_R[i];
305       seq[oneD+i]=data_G[i];
306       seq[2*oneD+i]=data_B[i];
307     }
308   }
309   else {
310     oneD=imsize;
311     for(int i=0;i<oneD;i++) {
312       seq[i]=buffer[i];
313     }
314   }
315
316   printf("seq 4 %d\n",seq[4]);
317   if(change==1) {
318     
319     seq[4]++;
320   }
321   if(change==2) {
322     
323     seq[9]++;
324   }
325
326   printf("seq 4 %d\n",seq[4]);
327
328   
329   
330
331   int total_len=imsize;
332   int rp=1;
333   int len= total_len/h;
334   cout<<len<<endl;
335
336   
337   uchar *mix=new uchar[256];
338
339
340
341     
342   for (int i = 0; i < 256 ; i++) {
343     mix[i]=Secretkey[i]^counter[i];
344   }
345
346   
347 //  cout<<"hash "<<endl;
348   for (int i = 0; i < 64 ; i++) {
349 //    DK[i]=digest[i];
350     DK[i]=mix[i];
351     //cout<<(int)DK[i]<<" ";
352   }
353   //cout<<endl;
354
355
356
357
358
359   uchar Sbox1[256];
360   uchar sc[256];  
361   uchar RM1[h];
362
363
364
365   double time=0;
366   double t=TimeStart();  
367   rc4key(DK, Sbox1, 8);
368   
369   rc4key(&DK[16], sc, 8);
370   
371
372
373   
374   prga(sc, sc,h,RM1,h);
375   
376   
377   
378
379   
380   time+=TimeStop(t);
381   cout<<"Time initializaton "<<time<<endl;
382
383
384
385   cout<<"imsize "<<imsize<<endl;
386   
387 /*  for(int i=0;i<imsize;i++){
388     cout<<(int)seq[i]<<" ";
389   }
390   cout<<endl;
391 */
392
393
394   
395   time=0;
396   t=TimeStart();
397   for(int i=0;i<nb_test;i++)
398   {
399     hash_DSD_BIN(seq, RM1,len,Sbox1,h);
400   }
401
402
403   
404   
405   time+=TimeStop(t);
406   cout<<"Hash Time  "<<time<<endl;
407   cout<<(double)imsize*nb_test/time<<"\t";
408
409   for(int i=0;i<h;i++){
410     cout<<(int)RM1[i]<<" ";
411   }
412   cout<<endl;
413
414   //  cout<<splitmix64(2490)<<endl;
415   // cout<<splitmix64(2489)<<endl;
416   
417
418   return 0;
419 }