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

Private GIT Repository
new
[Cipher_code.git] / OneRoundIoT / OneRound / one_round_hash_new3.cpp
index 47052ef02c5b46a6a35bde6dfd2a7b350f45a72f..81580ce545381d2e22f4bd6a1d01b72999642ec9 100644 (file)
@@ -1,7 +1,7 @@
 //gcc pixmap_io.c  -c 
 //g++ -O3 one_round_hash_new.cpp pixmap_io.o  -o one_round_hash_new -std=c++11   
 
 //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>
 
 
 #include <iostream>
@@ -126,7 +126,7 @@ void prga(uchar *sc, int ldata, uchar *r) {
   uchar j0=0;
 
   for (int it=0; it<ldata; it++) {
   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];
     j0 = (j0 + sc[i0])&0xFF;
     uchar tmp = sc[i0];
     sc[i0] = sc[j0];
@@ -235,7 +235,7 @@ int main(int argc, char** argv) {
 
 
   cout<<size_buf<<endl;
 
 
   cout<<size_buf<<endl;
-  int seed=time(NULL);
+  int seed=12;//time(NULL);
   cout<<seed<<endl;
   srand48(seed);
 
   cout<<seed<<endl;
   srand48(seed);