File: keylist.rb

package info (click to toggle)
ruby-gpgme 2.0.23-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,080 kB
  • sloc: ruby: 3,223; ansic: 2,650; sh: 7; makefile: 5
file content (7 lines) | stat: -rwxr-xr-x 108 bytes parent folder | download | duplicates (8)
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