tags:

views:

540

answers:

1

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)?

+3  A: 

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

Yehuda Katz
Great, thanks! Will check it out.
lk