I wonder why this does not work on Linux?
gpg --cipher-algo AES256 -c -o test.zip.enc test.zip
Enter passphrase:
openssl enc -AES-256-CBC -d -in test.zip.enc -out test.zip
enter aes-256-cbc decryption password:
bad magic number
To give a context, I have an application where I encrypt a file on Linux with GnuPG and I want Mac users to be able to decrypt it without need to install additional software (OpenSSL comes pre-installed on OS X).