ueno / ruby-gpgme

a ruby interface to GnuPG Made Easy (GPGME).
GNU Lesser General Public License v2.1
232 stars 99 forks source link

Support key generation/creation #68

Closed mattbostock closed 7 years ago

mattbostock commented 9 years ago

I'd like to be able to create a new GPG key using ruby-gpgme (mentioned as a TODO in the README).

ueno commented 9 years ago

I think it is already possible, though you will need to craft the key parameters. see the example: https://github.com/ueno/ruby-gpgme/blob/master/examples/genkey.rb

mattbostock commented 7 years ago

Thanks!