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

Private GIT Repository
update
[Cipher_code.git] / OneRoundIoT / Delta / scprng_old.cpp
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <stdint.h>
4 #include <sys/time.h>
5 #include<string.h>
6
7 typedef unsigned char uchar;
8
9
10
11
12 typedef uint64_t u8;
13
14 extern "C" {
15   int load_RGB_pixmap(char *filename, int *width, int *height, unsigned char**R_data, unsigned char**G_data, unsigned char**B_data);
16   void store_RGB_pixmap(char *filename, unsigned char *R_data, unsigned char *G_data, unsigned char *B_data, int width, int height);
17 }
18 using namespace std;
19
20
21
22 typedef struct sfcctx { u8 a; u8 b; u8 c; u8 count; } sfcctx;
23 #define rot64(x,k) (((x)<<(k))|((x)>>(64-(k))))
24
25 #define rotation  24
26 #define right_shift 11
27 #define left_shift 3
28
29
30 static inline u8 sfc( sfcctx *x ) {
31   u8 tmp = x->a + x->b + x->count++;
32   x->a = x->b ^ (x->b >> right_shift);
33   x->b = x->c + (x->c << left_shift);
34   x->c = rot64(x->c, rotation) + tmp;
35   return tmp;
36 }
37
38 static inline void sfcinit(sfcctx *x, uint64_t seed) {
39   x->a = seed;
40   x->b = seed;
41   x->c = seed;
42   x->count = 1;
43   for(int i=0;i<12;i++)
44     sfc(x);
45 }
46
47
48
49 typedef struct ranctx { u8 a; u8 b; u8 c; u8 d; } ranctx;
50
51
52
53 static inline u8 jsf( ranctx *x ) {
54   u8 e = x->a - rot64(x->b, 7);
55   x->a = x->b ^ rot64(x->c, 13);
56   x->b = x->c + rot64(x->d, 37);
57   x->c = x->d + e;
58   x->d = e + x->a;
59   return x->d;
60 }
61
62 static inline void jsfinit(ranctx *x, uint64_t seed) {
63   x->a = 0xf1ea5eed, x->b = x->c = x->d = seed;
64 }
65
66
67
68
69
70
71
72
73
74 inline uint64_t xorshift64( const uint64_t state)
75 {
76   uint64_t x = state;
77   x^= x << 13;
78   x^= x >> 7;
79   x^= x << 17;
80   return x;
81 }
82
83 static inline uint64_t splitmix64_stateless(uint64_t index) {
84   uint64_t z = (index + UINT64_C(0x9E3779B97F4A7C15));
85   z = (z ^ (z >> 30)) * UINT64_C(0xBF58476D1CE4E5B9);
86   z = (z ^ (z >> 27)) * UINT64_C(0x94D049BB133111EB);
87   return z ^ (z >> 31);
88 }
89
90
91 struct sulong2  {
92   uint64_t x;
93   uint64_t y;
94 };
95
96 typedef struct sulong2 ulong2;
97   
98 static inline uint64_t rotl(const uint64_t x, int k) {
99   return (x << k) | (x >> (64 - k));
100 }
101
102 // call this one before calling xoroshiro128plus
103 static inline void xoroshiro128plus_seed(ulong2 *xoro,uint64_t seed) {
104   xoro->x = splitmix64_stateless(seed);
105   xoro->y = splitmix64_stateless(seed + 1);
106 }
107
108 // returns random number, modifies xoroshiro128plus_s
109 static inline uint64_t xoroshiro128plus(ulong2 *xoro) {
110   const uint64_t s0 = xoro->x;
111   uint64_t s1 = xoro->y;
112   const uint64_t result = s0 + s1;
113
114   s1 ^= s0;
115   xoro->x = rotl(s0, 55) ^ s1 ^ (s1 << 14); // a, b
116   xoro->y = rotl(s1, 36);                   // c
117
118   return result;
119 }
120
121
122
123
124
125
126 double TimeStart()
127 {
128   struct timeval tstart;
129   gettimeofday(&tstart,0);
130   return( (double) (tstart.tv_sec + tstart.tv_usec*1e-6) );
131 }
132
133 double TimeStop(double t)
134 {
135   struct timeval tend;
136
137   gettimeofday(&tend,0);
138   t = (double) (tend.tv_sec + tend.tv_usec*1e-6) - t;
139   return (t);
140 }
141
142
143 uint xorshift32(const uint t)
144 {
145   /* Algorithm "xor" from p. 4 of Marsaglia, "Xorshift RNGs" */
146   uint x = t;
147   x ^= x << 13;
148   x ^= x >> 17;
149   x ^= x << 5;
150   return x;
151 }
152
153
154
155
156
157 void rc4key(uchar *key, uchar *sc, int size_DK) {
158
159   for(int i=0;i<256;i++) {
160     sc[i]=i;
161   }
162
163
164   uchar j0 = 0;
165   for(int i0=0; i0<256; i0++) {
166     j0 = (j0 + sc[i0] + key[i0%size_DK] )&0xFF;
167     uchar tmp = sc[i0];
168     sc[i0] = sc[j0 ];
169     sc[j0] = tmp;
170   }
171 }
172
173
174 void rc4keyperm(uchar *key,int len, int rp,int *sc, int size_DK) {
175
176   //sc=1:len;
177
178
179
180   for (int i=0;i<len;i++) {
181     sc[i]=i;
182   }
183   for (int it = 0; it < rp; it++) {
184     int j0 = 1;
185     for(int i0 = 0; i0<len; i0++) {
186       j0 = (j0 + sc[i0] + sc[j0] + key[i0%size_DK] )% len;
187       int tmp = sc[i0];
188       sc[i0] = sc[j0];
189       sc[j0] = tmp;
190     }
191
192   }
193 }
194
195
196 void scprng(uint64_t *plain, uint64_t* cipher, int bufsize, int nb_bloc, uint64_t *Val, uchar *Sbox1, uchar *Sbox2, int *Pbox, int *Pbox2, uchar *DK, int delta) {
197   int update=0;
198
199
200   for(int nb=0;nb<nb_bloc;nb++) {
201   
202     for(int j=0;j<bufsize;j++) {
203       //Val[j]=splitmix64_stateless(Val[j])^Val[Pbox[j]];
204       //Val[j]=xorshift64(Val[j])^Val[Pbox[j]];  //fail
205 //      Val[j]=xorshift64(Val[j])^Val[Pbox[j]]^Val[Pbox2[j]];
206       Val[j]=xorshift64(Val[j]);
207       
208       //Val[j]=xoroshiro128plus(&xoro[j])^Val[Pbox[j]];
209       //Val[j]=jsf(&ctx[j])^Val[Pbox[j]];  //good
210       //Val[j]=sfc(&sfcd[j])^Val[Pbox[j]];  //good
211     }
212     for(int j=0;j<bufsize;j++) {
213       Val[j]=Val[j]^Val[Pbox[j]]^Val[Pbox2[j]];
214     }
215
216     
217     for(int j=0;j<bufsize;j++) {
218       cipher[nb*bufsize+j]=Val[j]^plain[nb*bufsize+j];
219     }
220   
221
222
223     
224     if(update==delta) {
225       update=0;
226       uchar *ptr=(uchar*)Val;
227       for(int j=0;j<bufsize*8;j++)
228         ptr[j]^=Sbox2[Sbox1[ptr[j]+DK[j&63]]];
229       rc4keyperm(ptr, bufsize, 1, Pbox, 64);
230       //only for xorshift
231       rc4keyperm(&ptr[32], bufsize, 1, Pbox2, 64);
232     
233       
234       rc4key(ptr, Sbox1, 64);
235       rc4key(&ptr[64], Sbox2, 64);
236     }
237     else
238       update++;
239   }
240   
241
242   
243 }
244
245
246 int main(int argc, char **argv) {
247 //  printf("%d %d \n",sizeof(__uint64_t),sizeof(ulong));
248
249
250   uint nb_test=1;
251   
252   int width;
253   int height;
254   uchar *data_R, *data_G, *data_B;
255   int imsize;
256   uchar *buffer;
257
258   int size_buf=128;
259   
260   int lena=0;
261   int h=128;
262   for(int i=1; i<argc; i++){
263     if(strncmp(argv[i],"nb",2)==0)    nb_test = atoi(&(argv[i][2]));    //nb of test         
264     if(strncmp(argv[i],"h",1)==0) h = atoi(&(argv[i][1]));          //size of block
265     if(strncmp(argv[i],"sizebuf",7)==0) size_buf = atoi(&(argv[i][7]));          //SIZE of the buffer
266     if(strncmp(argv[i],"lena",4)==0) lena = atoi(&(argv[i][4]));          //Use Lena or buffer
267   }
268
269
270
271
272
273   
274
275    if(lena==1) {
276     load_RGB_pixmap("lena.ppm", &width, &height, &data_R, &data_G, &data_B);
277 //    load_RGB_pixmap("8192.ppm", &width, &height, &data_R, &data_G, &data_B);
278     imsize=width*height*3;
279 //  load_RGB_pixmap("No_ecb_mode_picture.ppm", &width, &height, &data_R, &data_G, &data_B);
280   }
281   else {
282     width=height=size_buf;
283     imsize=width*height;
284     buffer=new uchar[imsize];
285     for(int i=0;i<imsize;i++) {
286       buffer[i]=lrand48();
287     }
288   }
289
290
291   uchar* seq= new uchar[imsize];
292   uchar* seq2= new uchar[imsize];
293
294   int oneD=width*height;
295   if(lena) {
296     for(int i=0;i<oneD;i++) {
297       seq[i]=data_R[i];
298       seq[oneD+i]=data_G[i];
299       seq[2*oneD+i]=data_B[i];
300     }
301   }
302   else {
303     for(int i=0;i<oneD;i++) {
304       seq[i]=buffer[i];
305     }
306   }
307
308   uint64_t *SEQ=(uint64_t*)seq;
309   uint64_t *SEQ2=(uint64_t*)seq2;
310
311   
312   
313   uint64_t val=1021;
314   uint64_t val2=1021;
315
316   uint r1=21,r2=93;
317
318   uchar DK[64];
319   for(int i=0;i<64;i++)
320     DK[i]=splitmix64_stateless(i);
321
322
323   uchar Sbox1[256];
324   uchar Sbox2[256];
325   rc4key(DK, Sbox1, 8);
326   rc4key(&DK[8], Sbox2, 8);
327
328   int Pbox[h];
329   int Pbox2[h];
330   rc4keyperm(&DK[16], h, 1, Pbox, 16);
331   rc4keyperm(&DK[32], h, 1, Pbox2, 16);
332
333
334 //  uint64_t plain[bufsize];
335 //  uint64_t cipher[bufsize];
336   
337   
338   uint64_t Val[h];
339   for(int i=0;i<h;i++) {
340     Val[Pbox[i]]=splitmix64_stateless(i+DK[i&63]);
341   }
342   
343   
344   int delta=8;
345
346
347   
348
349   double t=TimeStart();
350   
351   int nb_bloc=imsize/(h*8);  //8 because we use 64bits numbers
352   
353
354
355   for(uint iter=0;iter<nb_test;iter++) {
356     scprng(SEQ, SEQ2, h, nb_bloc, Val,Sbox1, Sbox2, Pbox, Pbox2, DK, delta);
357   }
358
359   double time=TimeStop(t);
360   printf("%e  ",nb_test*nb_bloc*h*8/time);
361
362   if(lena) {
363     for(int i=0;i<oneD;i++) {
364       data_R[i]=seq2[i];
365       data_G[i]=seq2[oneD+i];
366       data_B[i]=seq2[2*oneD+i];
367     }
368     store_RGB_pixmap("lena2.ppm", data_R, data_G, data_B, width, height);
369   }
370
371
372   //reinit of parameters
373   rc4key(DK, Sbox1, 8);
374   rc4key(&DK[8], Sbox2, 8);
375
376   rc4keyperm(&DK[16], h, 1, Pbox, 16);
377   rc4keyperm(&DK[32], h, 1, Pbox2, 16);
378   for(int i=0;i<h;i++) {
379     Val[Pbox[i]]=splitmix64_stateless(i+DK[i&63]);
380   }
381
382   t=TimeStart();
383
384
385   for(uint iter=0;iter<nb_test;iter++) {
386     scprng(SEQ2, SEQ, h, nb_bloc, Val,Sbox1, Sbox2, Pbox, Pbox2, DK, delta);
387   }
388
389
390   time=TimeStop(t);
391   printf("%e\n",nb_test*nb_bloc*h*8/time);
392   
393   if(lena) {
394     for(int i=0;i<oneD;i++) {
395       data_R[i]=seq[i];
396       data_G[i]=seq[oneD+i];
397       data_B[i]=seq[2*oneD+i];
398     }
399     store_RGB_pixmap("lena3.ppm", data_R, data_G, data_B, width, height);
400   }
401   else {
402     bool equal=true;
403     for(int i=0;i<imsize;i++) {
404       //cout<<(int)buffer[i]<<endl;
405       if(buffer[i]!=seq[i]) {
406         equal=false;
407       }
408     }
409 //    cout<<"RESULT CORRECT: "<<equal<<endl;
410   }
411   
412   
413   
414 }