views:

251

answers:

2

We would like to automate the decryption of PGP files to our site so they my be processed.

Our clients send PGP encrypted files to us via FTP. We have written a service which consumes these files and does stuff with the data. The problem we are having is determining a good (perhaps easy) way to decrypt the files from the service or using some other automated method.

The application is on the .NET platform 2.0.

+1  A: 

This was asked and answered already here:

http://stackoverflow.com/questions/787398/pgp-library-for-c

Basically you can do it on the command line with openpgp, use a 3rd party library, or the bouncy castle app included with visual studio.

Byron Whitlock
A: 

For stable, well-supported and updated PGP-compatible library check OpenPGPBlackbox

Eugene Mayevski 'EldoS Corp