Re: encrypt data, not file, in one line?

2005-06-11 Thread C. D. Rok
slashlars wrote: Problem: I don't want to write temporary plaintext files. Whatever you are doing, you should take into account one simple fact: if you write data in one program to later on read it in the next one, *you* have (some) control over what and where remains on that disk. If you "pip

Re: encrypt data, not file, in one line?

2005-06-11 Thread Jean-David Beyer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 C. D. Rok wrote: > slashlars wrote: > >> Problem: I don't want to write temporary plaintext files. > > > Whatever you are doing, you should take into account one simple > fact: if you write data in one program to later on read it in > the next one,

Re: encrypt data, not file, in one line?

2005-06-11 Thread Joe Smith
What about: " echo SOME DATA HERE|gpg ... " This is not valid using just the standard execution methods under windows IIRC, but if you are using the cmd.exe shell it should work. 'echo' is a shell builtin. ___ Gnupg-users mailing list Gnupg-users@g

Re: encrypt data, not file, in one line?

2005-06-11 Thread Jean-David Beyer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Joe Smith wrote: > What about: > " > echo SOME DATA HERE|gpg ... > " > This is not valid using just the standard execution methods under > windows IIRC, but if you are using the cmd.exe shell it should work. > 'echo' is a shell builtin. I know next to