在ruby gpgme中使用密码短语回调

时间:2009-12-08 15:36:35

标签: ruby gnupg gpgme

我正在使用ruby gpgme gem(1.0.8)。我的密码短语回调未被调用:

def passfunc(*args)
  fd = args.last
  io = IO.for_fd(fd, 'w')
  io.puts "mypassphrase"
  io.flush
end

opts = {
  :passphrase_callback => method(:passfunc)
}
GPGME.decrypt(input,output, opts)

有人有密码短语回调的工作示例吗?

3 个答案:

答案 0 :(得分:3)

您可以在以下工作示例中找到回调示例。它以分离模式签署文件,即签名文件与原始文件分开。它使用〜/ .gnupg中的默认密钥环或类似的东西。要为密钥环使用不同的目录,请在调用GPGME :: sign()之前设置环境变量ENV [“GNUPGHOME”] =“”。

#!/usr/bin/ruby
require 'rubygems'
require 'gpgme'

puts "Signing #{ARGV[0]}" 
input = File.open(ARGV[0],'r')

PASSWD = "abc"

def passfunc(hook, uid_hint, passphrase_info, prev_was_bad, fd)
    puts("Passphrase for #{uid_hint}: ")
    io = IO.for_fd(fd, 'w')
    io.write(PASSWD+"\n")
    io.flush
end

output = File.open(ARGV[0]+'.asc','w')

sign = GPGME::sign(input, {
        :passphrase_callback => method(:passfunc), 
        :mode => GPGME::SIG_MODE_DETACH
    })
output.write(sign)
output.close
input.close

答案 1 :(得分:3)

这是另一个不使用分离签名的工作示例。要测试这一点,只需将'user@host.name'更改为密钥的标识符即可:GPG.decrypt(GPG.encrypt('some text',:armor => true))

require 'gpgme'
require 'highline/import'

module GPG
  ENCRYPT_KEY = 'user@host.com'
  @gpg = GPGME::Crypto.new

  class << self

    def decrypt(encrypted_data, options = {})
      options = { :passphrase_callback => self.method(:passfunc) }.merge(options)
      @gpg.decrypt(encrypted_data, options).read 
    end

    def encrypt(data_to_encrypt, options = {})
      options = { :passphrase_callback => self.method(:passfunc), :armor => true }.merge(options)
      @gpg.encrypt(data_to_encrypt, options).read
    end

    private
      def get_passphrase
        ask("Enter passphrase for #{ENCRYPT_KEY}: ") { |q| q.echo = '*' }
      end

      def passfunc(hook, uid_hint, passphrase_info, prev_was_bad, fd)
        begin
          system('stty -echo')
          io = IO.for_fd(fd, 'w')
          io.puts(get_passphrase)
          io.flush
        ensure
          (0 ... $_.length).each do |i| $_[i] = ?0 end if $_
          system('stty echo')
        end
        $stderr.puts
      end
  end
end

干杯!,

- 卡尔

答案 2 :(得分:2)

重要的是要注意,从GnuPG 2.0开始(在1.4中使用use-agent选项时)pinentry用于密码短语收集。这意味着gpgme密码短语回调将not be invoked。这是here的描述,可以在gpgme-tool example中找到使用示例。