File: keylist.rb

package info (click to toggle)
ruby-gpgme 2.0.23-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,920 kB
  • sloc: ruby: 3,129; ansic: 2,559; sh: 7; makefile: 5
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