Hi, i have encrypted several documents with
openssl enc -aes-256-cbc -e < FOO > FOO.aes256 This was serveral years ago before Libressl was invented. Now I wanted to decrypt the docs with: openssl enc -aes-256-cbc -d < FOO.aes256 > FOO This did not work. The password did not work anymore. I had to install openssl-1.0.2t via packages. This works: eopenssl enc -aes-256-cbc -d < FOO.aes256 > FOO My password is accepted. The document appeared in plaintext. Is there a trick to do this with libressl from base? Regards -Dieter