Accessing pgp encrypted file in Ruby

pgp, ruby

Solution

A Ruby library called OpenPGP was released a few months ago. It seems like it'd work for you.

Problem

I have a pgp-encrypted file that I need to extract data from at runtime. Can this be done by decrypting to memory only (as opposed to creating a decrypted file and deleting it when done)?

Original source