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

Private GIT Repository
new
authorcouturie <couturie@extinction>
Sat, 26 Aug 2017 13:38:28 +0000 (15:38 +0200)
committercouturie <couturie@extinction>
Sat, 26 Aug 2017 13:38:28 +0000 (15:38 +0200)
OneRoundIoT/openssl/openssl_evp.c

index 55ba25ef467e10820f98649421af2716598c9fa4..fd4dd257db1a26a750669f3ce6c179a0a6fcbfce 100644 (file)
@@ -84,7 +84,7 @@ int encrypt(unsigned char *plaintext, int plaintext_len, unsigned char *key,
   for(int i=0;i<nb_test;i++)
   {  
   
-    
+    ciphertext_len = 0;
     if(1 != EVP_EncryptUpdate(ctx, ciphertext, &len, plaintext, plaintext_len))
       handleErrors();
     ciphertext_len = len;
@@ -148,6 +148,7 @@ int decrypt(unsigned char *ciphertext, int ciphertext_len, unsigned char *key,
 */
   for(int i=0;i<nb_test;i++)
   {  
+    plaintext_len = 0;
     if(1 != EVP_DecryptUpdate(ctx, plaintext, &len, ciphertext, ciphertext_len))
       handleErrors();
     plaintext_len = len;