]> AND Private Git Repository - Cipher_code.git/commitdiff
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
add other hash
authorRaphaël Couturier <raphael.couturier@univ-fcomte.fr>
Tue, 25 Feb 2020 19:41:34 +0000 (20:41 +0100)
committerRaphaël Couturier <raphael.couturier@univ-fcomte.fr>
Tue, 25 Feb 2020 19:41:34 +0000 (20:41 +0100)
IDA_new/jerasure/config.log
IDA_new/jerasure/configure.ac
OneRoundIoT/OneRound/Makefile
OneRoundIoT/OneRound/rc4_hash.cpp [new file with mode: 0644]

index ab1a8b4e18910a02390a274579fa6fd02c921545..46913f1c85c9c6aac600a5f35ace89bf740e952d 100644 (file)
@@ -35,7 +35,6 @@ PATH: /usr/bin
 PATH: /usr/sbin/
 PATH: /usr/local/bin
 PATH: /usr/X11R6/bin
-PATH: /home/couturie/Cipher_code/IDA_new/gf-complete
 PATH: /home/couturie/work/Cipher_code/IDA_new/gf-complete
 
 
@@ -612,7 +611,7 @@ configure:12370: gcc -o conftest -g -O3 -Wall   conftest.c -lgf_complete  >&5
 configure:12370: $? = 0
 configure:12370: ./conftest
 configure:12370: $? = 0
-configure:12380: result: 806ea:2100800:7ffafbff:bfebfbff
+configure:12380: result: 806ea:3100800:7ffafbff:bfebfbff
 configure:12397: checking whether mmx is supported
 configure:12409: result: yes
 configure:12412: checking whether sse is supported
@@ -843,7 +842,7 @@ ax_cv_check_cflags___msse4_2=yes
 ax_cv_check_cflags___msse=yes
 ax_cv_check_cflags___mssse3=yes
 ax_cv_gcc_x86_avx_xgetbv_0x00000000=1f:0
-ax_cv_gcc_x86_cpuid_0x00000001=806ea:2100800:7ffafbff:bfebfbff
+ax_cv_gcc_x86_cpuid_0x00000001=806ea:3100800:7ffafbff:bfebfbff
 ax_cv_have_avx_cpu_ext=yes
 ax_cv_have_avx_ext=yes
 ax_cv_have_mmx_ext=yes
index 0cca9a810ecbd162379a11cba7c5343881d9736c..5d6abe376cca4bd6dc5b1f92d1d421a7f50e3751 100644 (file)
@@ -9,7 +9,7 @@ AC_CONFIG_HEADERS([include/config.h])
 AC_CONFIG_AUX_DIR([build-aux])
 AC_CONFIG_MACRO_DIR([m4])
 
-AM_INIT_AUTOMAKE([1.13 -Wall -Wno-extra-portability])
+AM_INIT_AUTOMAKE([1.16 -Wall -Wno-extra-portability])
 
 # Package default C compiler flags.
 dnl This must be before LT_INIT and AC_PROG_CC.
index a300f3289e1533935f9e1f412359e3b3dee77181..4eb5c4470c78b0e9739125f239cb78c0aba51be1 100644 (file)
@@ -72,6 +72,9 @@ one_round_hash_new2: pixmap_io.o one_round_hash_new2.o
 one_round_hash_new3: pixmap_io.o one_round_hash_new3.o 
        $(CXX)  -o $@ $^ $(CFLAGS)
 
+rc4_hash: pixmap_io.o rc4_hash.o 
+       $(CXX)  -o $@ $^ $(CFLAGS)
+
 one_round_auth: pixmap_io.o one_round_auth.o 
        $(CXX)  -o $@ $^ $(CFLAGS)
 
diff --git a/OneRoundIoT/OneRound/rc4_hash.cpp b/OneRoundIoT/OneRound/rc4_hash.cpp
new file mode 100644 (file)
index 0000000..d088af7
--- /dev/null
@@ -0,0 +1,389 @@
+//gcc pixmap_io.c  -c 
+//g++ -O3 one_round_hash_new.cpp pixmap_io.o  -o one_round_hash_new -std=c++11   
+
+//
+
+
+#include <iostream>
+#include <list>
+#include<math.h>
+#include<stdlib.h>
+#include<stdio.h>
+#include<string.h>
+#include <fstream>
+#include <sys/time.h>
+
+/*#include <cryptopp/hex.h>
+#include <cryptopp/sha.h>
+#include <cryptopp/osrng.h>
+#include <cryptopp/secblock.h>
+*/
+
+
+extern "C" {
+  int load_RGB_pixmap(char *filename, int *width, int *height, unsigned char**R_data, unsigned char**G_data, unsigned char**B_data);
+  void store_RGB_pixmap(char *filename, unsigned char *R_data, unsigned char *G_data, unsigned char *B_data, int width, int height);
+}
+
+
+//using namespace CryptoPP;
+using namespace std;
+
+
+int key_size=256;
+int nb_test=1;
+int ctr=0;
+
+
+
+
+
+
+
+typedef unsigned char   uchar;
+
+
+double TimeStart()
+{
+  struct timeval tstart;
+  gettimeofday(&tstart,0);
+  return( (double) (tstart.tv_sec + tstart.tv_usec*1e-6) );
+}
+
+double TimeStop(double t)
+{
+  struct timeval tend;
+
+  gettimeofday(&tend,0);
+  t = (double) (tend.tv_sec + tend.tv_usec*1e-6) - t;
+  return (t);
+}
+
+
+
+
+
+
+void inverse_tables(uchar *tab, int size_tab,uchar *inv_perm_tabs) {
+
+  for(int i=0;i<size_tab;i++) {
+    inv_perm_tabs[tab[i]] = i;
+  }
+
+}
+
+void inverse_tables_int(int *tab, int size_tab,int *inv_perm_tabs) {
+
+  for(int i=0;i<size_tab;i++) {
+    inv_perm_tabs[tab[i]] = i;
+  }
+
+}
+
+
+
+void rc4key(uchar *key, uchar *sc, int size_DK) {
+
+  for(int i=0;i<256;i++) {
+    sc[i]=i;
+  }
+
+
+  uchar j0 = 0;
+  for(int i0=0; i0<256; i0++) {
+    j0 = (j0 + sc[i0] + key[i0%size_DK] )&0xFF;
+    uchar tmp = sc[i0];
+    sc[i0] = sc[j0 ];
+    sc[j0] = tmp;
+  }
+}
+
+
+
+void rc4keyperm(uchar *key,int len, int rp,int *sc, int size_DK) {
+
+  //sc=1:len;
+
+
+  
+  for (int i=0;i<len;i++) {
+    sc[i]=i;
+  }
+  for (int it = 0; it < rp; it++) {
+    int j0 = 1;
+    for(int i0 = 0; i0<len; i0++) {
+      j0 = (j0 + sc[i0] + sc[j0] + key[i0%size_DK] )% len;
+      int tmp = sc[i0];
+      sc[i0] = sc[j0];
+      sc[j0] = tmp;
+    }
+
+  }
+}
+
+void prga(uchar *sc, int ldata, uchar *r) {
+  uchar i0=0;
+  uchar j0=0;
+
+  for (int it=0; it<ldata; it++) {
+    i0 = (i0+1);
+    j0 = (j0 + sc[i0]);
+    uchar tmp = sc[i0];
+    sc[i0] = sc[j0];
+    sc[j0] = tmp;
+    r[it]=sc[(sc[i0]+sc[j0])&0xFF];
+  }
+}
+
+inline uchar  circ(uchar x,int n) {return (x << n) | (x >> (8 - n));}
+
+
+//the proposed hash function, which is based on DSD structure. Sensitivity is ensured by employing the binary diffusion
+
+void hash_DSD_BIN(uchar* seq_in, uchar* RM1,int len, uchar *S, int h) {
+
+
+  // Goal: Calculate the hash value
+  // Output: RM (hash value)
+
+//  uchar *X=new uchar[h2];
+//  uchar *fX=new uchar[h2];
+  uchar X[h];
+  int ind1,ind2;
+  
+  for(int it=0;it<len;it++) {
+    //ind1=Pbox[it]*h;
+    //ind2=Pbox[(it+len/2)]*h;
+
+    ind1=it*h;
+
+    // Mix with dynamic RM
+
+     for(int a=0;a<h;a+=4) {
+       X[a]=RM1[a]^seq_in[ind1+a];
+       X[a+1]=RM1[a+1]^seq_in[ind1+a+1];
+       X[a+2]=RM1[a+2]^seq_in[ind1+a+2];
+       X[a+3]=RM1[a+3]^seq_in[ind1+a+3];
+       //       cout<<(int)X[a]<<" ";
+     }
+     //cout<<endl;
+     
+
+     prga(S, h, RM1);
+     /*
+     for(int i=0;i<h;i++) {
+         cout<<(int)RM1[i]<<" ";
+     }
+     cout<<endl;
+     */
+     //     if(it==40)
+     //  exit(0);
+     for(int a=0;a<h;a+=4) {
+       RM1[a]=S[RM1[a]];
+       RM1[a+1]=S[RM1[a+1]];
+       RM1[a+2]=S[RM1[a+2]];
+       RM1[a+3]=S[RM1[a+3]];
+               
+     }
+     
+     //cout<<"azeaze"<<endl;
+  }
+
+  /*
+     for(int a=0;a<256;a++) {
+       cout<<(int)S[a]<<" ";
+     }
+  cout<<endl;
+  */
+}
+
+
+
+
+
+  
+
+
+
+  
+int main(int argc, char** argv) {
+
+
+  int h=16;
+  int lena=0;
+  int size_buf=1;
+  int change=0;
+
+  
+  for(int i=1; i<argc; i++){
+    if(strncmp(argv[i],"nb",2)==0)    nb_test = atoi(&(argv[i][2]));    //nb of test         
+    if(strncmp(argv[i],"h",1)==0) h = atoi(&(argv[i][1]));          //size of block
+    if(strncmp(argv[i],"sizebuf",7)==0) size_buf = atoi(&(argv[i][7]));          //SIZE of the buffer
+    if(strncmp(argv[i],"lena",4)==0) lena = atoi(&(argv[i][4]));          //Use Lena or buffer
+    if(strncmp(argv[i],"c",1)==0) change = atoi(&(argv[i][1]));          //Use Lena or buffer
+  }
+
+
+  cout<<size_buf<<endl;
+  int seed=12;//time(NULL);
+  cout<<seed<<endl;
+  srand48(seed);
+
+  uchar Secretkey[key_size];
+
+  uchar counter[key_size];
+
+  for(int i=0;i<key_size;i++) {
+    Secretkey[i]=lrand48()&0xFF;
+    counter[i]=lrand48()&0xFF;
+  }
+
+  
+  int size = 64;
+  uchar DK[size];
+
+
+
+
+  int width;
+  int height;
+
+  uchar *data_R, *data_G, *data_B;
+  int imsize;
+  uchar *buffer;
+  
+  if(lena==1) {
+    load_RGB_pixmap("lena.ppm", &width, &height, &data_R, &data_G, &data_B);
+    imsize=width*height*3;
+//  load_RGB_pixmap("No_ecb_mode_picture.ppm", &width, &height, &data_R, &data_G, &data_B);
+  }
+  else {
+    imsize=size_buf;
+    buffer=new uchar[imsize];
+    for(int i=0;i<imsize;i++) {
+      buffer[i]=lrand48();
+    }
+  }
+
+
+  
+  
+  uchar* seq= new uchar[imsize];
+  uchar* seq2= new uchar[imsize];
+
+  int oneD;
+  if(lena) {
+    oneD=width*height;
+    for(int i=0;i<oneD;i++) {
+      seq[i]=data_R[i];
+      seq[oneD+i]=data_G[i];
+      seq[2*oneD+i]=data_B[i];
+    }
+  }
+  else {
+    oneD=imsize;
+    for(int i=0;i<oneD;i++) {
+      seq[i]=buffer[i];
+    }
+  }
+
+  printf("seq 4 %d\n",seq[4]);
+  if(change==1) {
+    
+    seq[4]++;
+  }
+  if(change==2) {
+    
+    seq[9]++;
+  }
+
+  printf("seq 4 %d\n",seq[4]);
+
+  
+  
+
+  int total_len=imsize;
+  int rp=1;
+  int len= total_len/h;
+  cout<<len<<endl;
+
+  
+  uchar *mix=new uchar[256];
+
+
+
+    
+  for (int i = 0; i < 256 ; i++) {
+    mix[i]=Secretkey[i]^counter[i];
+  }
+
+  
+//  cout<<"hash "<<endl;
+  for (int i = 0; i < 64 ; i++) {
+//    DK[i]=digest[i];
+    DK[i]=mix[i];
+  }
+
+
+
+
+  uchar Sbox1[256];
+  uchar sc[256];  
+  uchar RM1[h];
+
+
+
+  double time=0;
+  double t=TimeStart();  
+  rc4key(DK, Sbox1, 8);
+  
+  rc4key(&DK[16], sc, 8);
+  
+
+
+  
+  prga(sc, h, RM1);
+  
+  
+  
+
+  
+  time+=TimeStop(t);
+  cout<<"Time initializaton "<<time<<endl;
+
+
+
+  cout<<"imsize "<<imsize<<endl;
+  
+/*  for(int i=0;i<imsize;i++){
+    cout<<(int)seq[i]<<" ";
+  }
+  cout<<endl;
+*/
+
+
+  
+  time=0;
+  t=TimeStart();
+  for(int i=0;i<nb_test;i++)
+  {
+    hash_DSD_BIN(seq, RM1,len,Sbox1,h);
+  }
+
+
+  
+  
+  time+=TimeStop(t);
+  cout<<"Hash Time  "<<time<<endl;
+  cout<<(double)imsize*nb_test/time<<"\t";
+
+  for(int i=0;i<h;i++){
+    cout<<(int)RM1[i]<<" ";
+  }
+  cout<<endl;
+
+  
+
+  return 0;
+}