File: keylist.rb

package info (click to toggle)
ruby-gpgme 2.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,348 kB
  • ctags: 342
  • sloc: ruby: 2,921; ansic: 2,259; makefile: 3
file content (7 lines) | stat: -rwxr-xr-x 108 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
#!/usr/bin/env ruby
require 'gpgme'

ctx = GPGME::Ctx.new
ctx.each_key(ARGV.shift) do |key|
  puts(key)
end