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"