我能够加密文件,但是当我尝试解密它们时,我收到“错误读取输入文件”。我正在使用公钥/私钥对来加密用于加密文件的密码。这样只有私钥的所有者才能解密文件。
我的加密方法使用 Ruby OpenSSL 模块,如下所示:
file = params[:submission][:report].path
filename = params[:submission][:report].original_filename.gsub(" ", "_")
pubkey = OpenSSL::PKey::RSA.new File.read "#{Rails.root.to_s}/key/pubkey.pem"
cipher = OpenSSL::Cipher.new("aes-256-cbc")
cipher.encrypt
cipher.key = key = (0...50).map{ ('a'..'z').to_a[rand(26)] }.join
buf = ""
File.open("#{Rails.root.to_s}/evidence/#{filename}.enc", "wb") do |outf|
File.open(file, "rb") do |inf|
while inf.read(4096, buf)
outf << cipher.update(buf)
end
outf << cipher.final
end
end
encrypted_key = pubkey.public_encrypt key
File.open("#{Rails.root.to_s}/evidence/#{filename}_passphrase.bin", 'wb') {|f| f.write(encrypted_key) }
然后我在 Linux 环境中使用 openssl 来处理解密
openssl rsautl -in file_passphrase.bin -out passphrase.txt -inkey privkey.pem -decrypt
openssl enc -a -d -aes-256-cbc -in file.enc -out file.pdf -pass file:passphrase.txt
我也尝试过使用盐,加密/解密它与密码相同,我得到了同样的错误。
我在这里做错了什么?
谢谢