//gcc pixmap_io.c -c
//g++ -O3 one_round_hash_new.cpp pixmap_io.o -o one_round_hash_new -std=c++11
-//
+//comparison with cmac
#include <iostream>
uchar j0=0;
for (int it=0; it<ldata; it++) {
- i0 = ((i0+1)&0xFE); //%255);
+ i0 = ((i0+1)%255);
j0 = (j0 + sc[i0])&0xFF;
uchar tmp = sc[i0];
sc[i0] = sc[j0];
cout<<size_buf<<endl;
- int seed=time(NULL);
+ int seed=12;//time(NULL);
cout<<seed<<endl;
srand48(seed);