我正在研究加密数据集。并使用下面的代码来解密文件。
openssl enc -aes-256-cbc -d -in $encryptedfile -out $decrypted_file -pass file:secret.txt
但我总是收到此错误通知:
error writing output file
答案1
看来我没有足够的空间来写入解密的文件。当然,在使用openssl解密文件之前,我们需要获得写入权限。
我正在研究加密数据集。并使用下面的代码来解密文件。
openssl enc -aes-256-cbc -d -in $encryptedfile -out $decrypted_file -pass file:secret.txt
但我总是收到此错误通知:
error writing output file
看来我没有足够的空间来写入解密的文件。当然,在使用openssl解密文件之前,我们需要获得写入权限。