displaying decrypted plaintext on screen instead of output to file

2011-09-08 Thread vedaal
Is there an option in gnupg like the '-m' option in pgp which allows the display of decrypted plaintext on the screen instead of saving to file, even when the file is encrypted 'without' the '--for-your-eyes- only' option? I tried: gpg --for-your-eyes-only file.asc but gnupg decrypts and

Re: displaying decrypted plaintext on screen instead of output to file

2011-09-08 Thread Daniel Kahn Gillmor
On 09/08/2011 02:54 PM, ved...@nym.hush.com wrote: Is there an option in gnupg like the '-m' option in pgp which allows the display of decrypted plaintext on the screen instead of saving to file, you could try using stdin and stdout. For example: gpg --decrypt file.asc (or pipe that

Re: displaying decrypted plaintext on screen instead of output to file

2011-09-08 Thread vedaal
On Thu, 08 Sep 2011 15:02:32 -0400 Daniel Kahn Gillmor d...@fifthhorseman.net wrote: On 09/08/2011 02:54 PM, ved...@nym.hush.com wrote: Is there an option in gnupg like the '-m' option in pgp which allows the display of decrypted plaintext on the screen instead of saving to file, gpg

Re: displaying decrypted plaintext on screen instead of output to file

2011-09-08 Thread Daniel Kahn Gillmor
On 09/08/2011 04:21 PM, ved...@nym.hush.com wrote: On Thu, 08 Sep 2011 15:02:32 -0400 Daniel Kahn Gillmor d...@fifthhorseman.net wrote: On 09/08/2011 02:54 PM, ved...@nym.hush.com wrote: Is there an option in gnupg like the '-m' option in pgp which allows the display of decrypted plaintext

Re: displaying decrypted plaintext on screen instead of output to file

2011-09-08 Thread vedaal
On Thu, 08 Sep 2011 17:02:07 -0400 Jean-David Beyer jeandav...@verizon.net wrote: ved...@nym.hush.com wrote: On Thu, 08 Sep 2011 16:33:38 -0400 Daniel Kahn Gillmor d...@fifthhorseman.net wrote: Alternately, you could feed your data directly on stdin from the command line with a pipe,

Re: OpenPGP card issues

2011-09-08 Thread David Robertson
I don't have a ~/.gnupg/gpg-agent.conf and starting gpg-agent with --use-standard-socket doesn't work: david@david-desktop-debian:/$ gpg-agent --use-standard-socket gpg-agent[4092]: can't connect to `/tmp/gpg-ZGPhgS/S.gpg-agent': No such file or directory gpg-agent[4092]: can't connect to

Re: displaying decrypted plaintext on screen instead of output to file

2011-09-08 Thread Sven Radde
Am -10.01.-28163 20:59, schrieb ved...@nym.hush.com: Is there an option in gnupg like the '-m' option in pgp which allows the display of decrypted plaintext on the screen instead of saving to file, Use - as the output filename and pipe that into more/less/..., as in gpg -o - file.gpg |