1

(1 replies, posted in wolfSSL)

Hi all,

I have programs that use EVP with AES CBC and 3DES.

Is it planned to have AES-GCM via EVP ?? I mean, adding a kind of "wolfSSL_EVP_aes_128_gcm" usage in evp.h.

Thanks,

JL

2

(1 replies, posted in wolfSSL)

Hi all,

What is wrong with the command below ?? I am using the same key and iv that i have used in my programs with WolfSSL libcrypto. By the way, i have tried converting the key and iv' values to hexadecimal, but the outcome is the same.

    wolfssl -encrypt aes-128-cbc -in arq_1MB.dat -out fileE1.txt -key 9A594EFA2C40BCC12A056443AC0CC1C2 -iv     571D32CE4F431738E55269E218D13209 -verify

    wolfssl -decrypt aes-128-cbc -in fileE1.txt -out fileD1.txt -key 9A594EFA2C40BCC12A056443AC0CC1C2 -iv 571D32CE4F431738E55269E218D13209 -verify


    wolfssl -encrypt aes-256-cbc -in arq_1MB.dat -out fileE2.txt -key EA3E5530FA44E52C964233B6E9DE5DB2F617B1432DC8AAE236C48EF1ED9CF55E -iv 571D32CE4F431738E55269E218D13209 -verify

    wolfssl -decrypt aes-256-cbc -in fileE2.txt -out fileD2.txt -key EA3E5530FA44E52C964233B6E9DE5DB2F617B1432DC8AAE236C48EF1ED9CF55E -iv 571D32CE4F431738E55269E218D13209 -verify

Any of the commands abends responding with:

  Invalid entry
  Error returned: -313.


How could I run those commands in the right way ???

TKS

JL