I'm writing a C application and I wanna know if there is a way to view .gpg file content (then the encrypted content). The .gpg file in question concerns a simple .txt file that I encrypted. I know a bit GPGME, it's possible with its function? Or other ways...

EDIT: I thought one thing: if my application use "--armor" option, I've a .gpg file in ASCII mode and not binary...so the .gpg file can be read simply, true? The easiest way...

link|improve this question

0% accept rate
feedback

2 Answers

libgcrypt

This is a general purpose cryptographic library based on the code from GnuPG. It provides functions for all cryptograhic building blocks: symmetric ciphers (AES, DES, Blowfish, CAST5, Twofish, Arcfour), hash algorithms (MD4, MD5, RIPE-MD160, SHA-1, TIGER-192), MACs (HMAC for all hash algorithms), public key algorithms (RSA, ElGamal, DSA), large integer functions, random numbers and a lot of supporting functions.

link|improve this answer
Thanks for answer. I don't know libgcrypt...Do you know the exact funtion/s to use for my purpose? – ubuntiano Dec 28 '10 at 18:35
@ubuntiano No, never used it. You'll have to read the docs. – marcog Dec 28 '10 at 18:36
I'll do. I'll wait other answers too. – ubuntiano Dec 28 '10 at 18:40
I thought one thing: if my application use "--armor" option, I've a .gpg file in ASCII mode and not binary...so the .gpg file can be read simply, true? The easiest way... – ubuntiano Jan 1 '11 at 23:26
feedback

You can use GnuPG Made Easy library, here is a mini howto on using it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.