<div dir="ltr"><div><div><div><div><div><div><div>Hi,<br></div> I have two systems one with openssl 1.0.1e (debian wheezy) and the new one with openssl 1.1.0c (debian stretch)<br><br></div> The files encrypted with 1.0.1e are not decryptable via 1.1.0c <br></div>These are the investigations I have done<br><br></div>on my system with 1.0.1e openssl<br>$ echo some text > file <br>$ cat file  | openssl  aes-256-cbc  -pass pass:test  > file.enc<br>$ md5sum file.enc <br>5482ea53a6677865d1e559ac3057738c  file.enc<br><br></div>when I bring that file over to my system with 1.1.0c openssl<br>$ md5sum file.enc <br>5482ea53a6677865d1e559ac3057738c  file.enc<br>$ cat file.enc | openssl  aes-256-cbc  -d -pass pass:test <br>bad decrypt<br>4146981184:error:06065064:digital envelope routines:EVP_DecryptFinal_ex:bad decrypt:crypto/evp/evp_enc.c:529:<br><br></div>Please can someone tell me what other options I Am supposed to pass to get decryption done successfully.<br><br></div>Thanks in advance<br></div>