Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to do GPG encryption and decryption for a Zip file. I am able to encrypt and decrypt a single text file even I'm able to able to do the same for a zip file contains one single file in it. But when i tried the same for a zip file which contains multiple number of files inside the archive the encryption/decryption happened without any issues but when i tried to extract the decrypted files i got exception as Corrupted. Below is the command i used to do the encryption and decryption.

gpg --recipient "GardenCity" --output "20120618.zip.asc" --encrypt "20120618.zip"

gpg --decrypt-files "20120618.zip.asc"
share|improve this question
Please revise your question and include the exact error message you receive. And note that if you do not have the PRIVATE key for "GardenCity", you cannot decrypt it. Also, I would NOT use ".asc" as the file extension; someone might think it's an ASCII file such that it might be corrupted during a file transfer. – BellevueBob Sep 4 '12 at 20:10

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.