我使用GnuPG的蟒蛇解密我已經與蟒蛇下載的文件:的Python - GPG解密的作品,但GNUPG不
gpg = gnupg.GPG(gnupghome="/home/myname/.gnupg")
with open('updates/'+filelist[i],'r') as f:
print "Decrypting "+fn
status=gpg.decrypt_file(f, passphrase="passphrase",output='updates/'+fn)
print 'ok: ', status.ok
print 'stderr: ',status.stderr
失敗說「密鑰不可用」。但是,當我從終端運行gpg -d文件名解密文件沒有任何錯誤。我已經使用gpg -K並檢查用於加密文件的祕密證書/密鑰是否爲導入+信任等。
這是所有在Ubuntu Server 12.04上運行的。
任何人都可以建議我如何解決這個錯誤?
標題看起來不符合問題 – balki