如何使用Ruby gpgme解密PGP加密文件

前端之家收集整理的这篇文章主要介绍了如何使用Ruby gpgme解密PGP加密文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我找不到一个如何做到这一点的例子.我有一个PGP加密的XLS文件和一个PGP密钥.这是我的代码返回一个空字符串:
require 'rubygems'
require 'gpgme'

def passfunc(obj,uid_hint,passphrase_info,prev_was_bad,fd)
  io = IO.for_fd(fd,'w')
  io.puts "PASSPHRASE"
  io.flush
end

encrypted_data = GPGME::Data.new(File.open("file.xls.pgp"))
key = GPGME::Data.new(File.open("key.txt"))

ctx = GPGME::Ctx.new :passphrase_callback => method(:passfunc)
ctx.import_keys key

decrypted = ctx.decrypt encrypted_data

puts decrypted.read

我可以使用相同的密钥在Windows上的一个名为GNU Privacy Assistant的程序中解密此文件.任何帮助表示赞赏.

解决方法

Ruby gpgme的开发人员Daiki Ueno在GitHub上与我联系:

adding decrypted.seek(0) after the line decrypted = ctx.decrypt encrypted_data seems to solve the problem

原文链接:https://www.f2er.com/ruby/267945.html

猜你在找的Ruby相关文章