How am I supposed to use gpg to symmetrically encrypt a file? When I run gpg --symmetric filename, then it prompts me for passwords as expected, and generates a filename.gpg file. However, when I run gpg -d filename.gpg, it returns

gpg: CAST5 encrypted data
gpg: encrypted with 1 passphrase
SECRET DATA HERE
gpg: WARNING: message was not integrity protected

without asking for the password

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Recent versions of GnuPG come with a helper program gpg-agent, which handles the key and password operations and acts as a password cache. It could be that gpg-agent has cached the password you just entered.

To flush the cache, use either:

  • echo reloadagent | gpg-connect-agent

  • send SIGHUP: pkill -HUP -U $USER gpg-agent

link|improve this answer
fantastic, thanks!! – gatoatigrado Jun 7 '11 at 20:39
feedback

Your Answer

 
or
required, but never shown

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