Results 1 to 2 of 2

Thread: HOWTO: Disable GPG agent password dialog (pinentry)

  1. #1
    Join Date
    Jun 2008
    Beans
    38

    Smile HOWTO: Disable GPG agent password dialog (pinentry)

    Say you want to symmetrically encrypt a file with GPG:
    Code:
    gpg -c foobar.txt
    You have already decided on a nice long passphrase and have it copied to the keyboard, when a dialog window pops up asking for the passphrase, but won't allow it to be pasted in.

    The fix is simple:
    1. Open ~/.gnupg/gpg.conf in your favorite editor
    2. Comment the use-agent line (prefix it with #)
    3. Kill off the gpg-agent service (sudo killall -9 gpg-agent)


    Now you will be prompted at the shell for the passphrase whenever you use gpg -c. This also helps for scripts.

  2. #2
    Join Date
    Dec 2006
    Location
    in Germany, unfortunately
    Beans
    Hidden!
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: HOWTO: Disable GPG agent password dialog (pinentry)

    Thank you!

    In case others search for this > command where it's useful (non-interactive file encryption via gpg/command line):

    Code:
    gpg --batch --yes --passphrase secret -c file

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •