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

Private GIT Repository
new
authorcouturie <couturie@extinction>
Thu, 24 Aug 2017 20:26:10 +0000 (22:26 +0200)
committercouturie <couturie@extinction>
Thu, 24 Aug 2017 20:26:10 +0000 (22:26 +0200)
OneRoundIoT/OneRound/one_round_new.cpp

index 77efe34ccc5474d33b2555d474649848663bddf2..b394646615906aa4d52019f39b384c82facb2e40 100644 (file)
@@ -139,8 +139,11 @@ template<int h2>
 void encrypt_ctr(uchar* seq_in, uchar *seq_out, int len,uchar* RM1,int *Pbox, int *PboxRM, uchar *Sbox1, uchar *Sbox2, int enc) {
 
 
 void encrypt_ctr(uchar* seq_in, uchar *seq_out, int len,uchar* RM1,int *Pbox, int *PboxRM, uchar *Sbox1, uchar *Sbox2, int enc) {
 
 
-  uchar *X=new uchar[h2];
-  uchar *fX=new uchar[h2];
+//  uchar *X=new uchar[h2];
+//  uchar *fX=new uchar[h2];
+  uchar X[h2];
+  uchar fX[h2];
+  
   int ind1,ind2;
 
   
   int ind1,ind2;