Re: make gpg-agent forget the PIN

2013-11-02 Thread Johannes Zarl
Thanks! That was exactly what I was looking for. Johannes On Friday 01 November 2013 20:17:41 Peter Lebbing wrote: Hi Johannes, Is there any way to explicitly tell gpg-agent to forget the pin as well? Based on a post once made by Werner, I have this script:

Re: make gpg-agent forget the PIN

2013-11-02 Thread Werner Koch
On Fri, 1 Nov 2013 20:17, pe...@digitalbrains.com said: It's called 'scforget' here. Or better: pull off the card and take it with you. Shalom-Salam, Werner -- Die Gedanken sind frei. Ausnahmen regelt ein Bundesgesetz. ___ Gnupg-users

Re: make gpg-agent forget the PIN

2013-11-02 Thread Peter Lebbing
On 02/11/13 12:26, Werner Koch wrote: Or better: pull off the card and take it with you. I unplug my reader (USB) when I don't use it; I leave the card in. I now have OpenPGP v2 cards, but I earlier had v1 cards that started to malfunction after some time. I had the impression that they were

make gpg-agent forget the PIN

2013-11-01 Thread Johannes Zarl
Hi, I'm trying to get gpg-agent to automatically forget my credentials as soon as I leave the PC/the screen is locked. So far, I only got it half working: When I send a SIGHUP to the gpg-agent, it correctly forgets cached passphrases. The cached PIN of my OpenPGP card, however remains

Re: make gpg-agent forget the PIN

2013-11-01 Thread Peter Lebbing
Hi Johannes, Is there any way to explicitly tell gpg-agent to forget the pin as well? Based on a post once made by Werner, I have this script: ---8-8--- #!/bin/sh gpg-connect-agent 'SCD RESET' /bye ---8-8--- It's called