我想知道为什么这在 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
举个例子,我有一个应用程序,我在 Linux 上使用 GnuPG 加密文件,我希望 Mac 用户能够解密它而无需安装其他软件(OpenSSL 预装在 OS X 上)。