我使用file_input_contents函数加密了一个文件:
file_input_contents('myfile',openssl_encrypt("This string was AES-128 / ECB encrypted.", "AES-128-ECB", "password"));
但我无法使用openssl命令对其进行解密。总是得到"糟糕的魔术数字"错误。
我试过这个命令:
openssl enc -aes-128-ecb -d -in myfile -out outputfile