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

Private GIT Repository
new
authorcouturie <you@example.com>
Tue, 10 Jul 2018 13:55:51 +0000 (15:55 +0200)
committercouturie <you@example.com>
Tue, 10 Jul 2018 13:55:51 +0000 (15:55 +0200)
Arduino/sketch_AES/sketch_AES.ino
IDA/Makefile
IDA/ida_gf65.cpp
OneRoundIoT/OneRound/Makefile
OneRoundIoT/OneRound/one_round_hash.cpp
OneRoundIoT/OneRound/one_round_new.cpp

index 998f7635422bcf52fbf8d14a1ee805820f7dd87e..c2805c332d53cbd935118df8b86d046b9755672c 100644 (file)
@@ -6,7 +6,7 @@
 AES aes ;
 
 byte *key = (unsigned char*)"0123456789010123";
-const int size_mesg=64;
+const int size_mesg=16*15;
 
 
 
index 71745c664ca50736f2cf1aaacd883232b8591e35..f34a69bdf0e8c7be7d71196a498eca44f8a53596 100644 (file)
@@ -16,7 +16,7 @@ ida_gf64: ida_gf64.cpp
        g++  -o $@ $<  -std=c++11 -O3 -lm  -mmmx -msse -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -mavx -g -O3 -Wall   -I/home/couturie/ajeter/jerasure/include  /home/couturie/ajeter/jerasure/src/.libs/jerasure.o /home/couturie/ajeter/jerasure/src/.libs/galois.o -lgf_complete -fpermissive
 
 ida_gf65: ida_gf65.cpp
-       g++  -o $@ $<  -std=c++11 -O3 -lm  -mmmx -msse -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -mavx -g -O3 -Wall   -I/home/couturie/ajeter/jerasure/include  /home/couturie/ajeter/jerasure/src/.libs/jerasure.o /home/couturie/ajeter/jerasure/src/.libs/galois.o -lgf_complete -fpermissive
+       g++  -o $@ $<  -std=c++11 -O3 -lm  -mmmx -msse -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -mavx -g -O3 -Wall   -I/home/couturie/ajeter/jerasure/include  /home/couturie/ajeter/jerasure/src/.libs/jerasure.o /home/couturie/ajeter/jerasure/src/.libs/galois.o -lgf_complete -fpermissive -lpthread
 
 clean:
        rm test_mat2 ida ida_gf64
index 09c4162daeb0c6285cf036edab2c40da2adf692f..2a914c591da2dd497140b339a1bfe2193dd9755a 100644 (file)
 #include <string.h>
 #include <algorithm>    // std::random_shuffle
 #include <vector>       // std::vector
+#include <unistd.h>
+#include <thread>
+
+
 extern "C" {
   #include "jerasure.h"
 }
@@ -20,7 +24,7 @@ typedef unsigned long mylong;
 
 using namespace std;
 
-string cloud[5]={"dropboxida1","googleida1","megaida1","onedriveida1","pcloudida1"};
+string cloud[5]={"dropboxida1","googleida1","onedriveida2","onedriveida1","pcloudida1"};
 
 
 void display(mylong *mat, int r, int c) {
@@ -441,18 +445,27 @@ int main(int argc, char **argv)
 
 //  display(matC,t,t);
 
-  
+  thread th[n];
   //Save trunks
   for(int i=0;i<n;i++) {
     stringstream ss;
     ss <<"lena_"<<i<<".png";
     string str = ss.str();
     saveFile((uint8_t*)&matC[i*len], str.c_str(),len*sizeof(mylong));
-    sendChunk( str,i);
+//    sendChunk( str,i);
+    th[i] = thread(sendChunk,str, i);
   }
 
+  for(int i=0;i<n;i++) {
+    th[i].join();
+  }
   
+/*  cout<<"sleep begin"<<endl;
+  sleep(2);
+  cout<<"sleep end"<<endl;
+*/
 
+  
   mylong *matCs = malloc(sizeof(mylong)*t*len);
   mylong *matGs = malloc(sizeof(mylong)*t*t);
 
@@ -469,9 +482,10 @@ int main(int argc, char **argv)
 
   std::cout << "random chunk" << std::endl;  
   int ind=0;
+
+  
+  
   for(int ii=0;ii<t;ii++) {
-//  for(int i=n-1;i>=t;i--) {
-//  for(int i=0;i<n;i+=2) {
 
     auto i=myvector[ii];
     std::cout << myvector[i] << " ";
@@ -481,7 +495,23 @@ int main(int argc, char **argv)
     ss <<"lena_"<<i<<".png";
     string str = ss.str();
 
-    retrieveChunk(str,i);
+//    retrieveChunk(str,i);
+    th[ii] = thread(retrieveChunk,str, i);
+  }
+
+  
+  ind=0;
+
+  for(int ii=0;ii<t;ii++) {
+
+    auto i=myvector[ii];
+    std::cout << myvector[i] << " ";
+
+
+    stringstream ss;
+    ss <<"lena_"<<i<<".png";
+    string str = ss.str();
+    th[ii].join();    
     readFile((uint8_t*)&matCs[ind*len], str.c_str(),len*sizeof(mylong));
 
 //    display(&matCs[ind*len],1,1);
index c3775dd91ff36c56aa741de40774bb9555d4a955..be3d7b7925009fbf47ba58e23b141f4a042f38e6 100644 (file)
@@ -8,7 +8,7 @@ else
 ifeq ($(uname_m),armv6l)
 CFLAGS=-O3   -march=armv6 -mfpu=vfp -mfloat-abi=hard -lrt
 else
-CFLAGS=-O3 
+CFLAGS=-O3 `pkg-config --cflags --libs glib-2.0`
 endif
 endif
 
index 373892ccc8b32248389106e7b884399830d42eb7..2688609e7f5dbd62439253bb30f5d79f88a7f218 100644 (file)
@@ -12,6 +12,8 @@
 #include<string.h>
 #include <fstream>
 #include <sys/time.h>
+#include <glib.h>
+
 
 /*#include <cryptopp/hex.h>
 #include <cryptopp/sha.h>
index be38534e2b865310957a7877e6fe942e46800315..d4441a96ff9643e1c3a439f7b6568ddb24bac726 100644 (file)
@@ -9,6 +9,8 @@
 #include<string.h>
 #include <fstream>
 #include <sys/time.h>
+#include <glib.h>
+
 
 /*#include <cryptopp/hex.h>
 #include <cryptopp/sha.h>
@@ -412,6 +414,10 @@ int main(int argc, char** argv) {
   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);
@@ -466,15 +472,27 @@ int main(int argc, char** argv) {
     
   for (int i = 0; i < 256 ; i++) {
     mix[i]=Secretkey[i]^counter[i];
+    
   }
+  gchar  *sha512;
+
+  sha512 = g_compute_checksum_for_string(G_CHECKSUM_SHA512, (const char*) mix, 256);
+//  g_print("%s\n", sha512);
+
+
+
+
+
+
 
   
 //  cout<<"hash "<<endl;
   for (int i = 0; i < 64 ; i++) {
 //    DK[i]=digest[i];
-    DK[i]=mix[i];
+    DK[i]=sha512[i];
   }
-
+  g_free(sha512);
 
 
   int *Pbox=new int[len];