Re: piping data stream through GPG

2007-06-09 Thread robert
robert wrote: > I played around trying to encrypt/decrypt data through GPG on the fly > (or worse - by using a file) (on Windows first - later to try on Linux too) > > Using os.popen3 like > > >>> i,o,e=os.popen3('gpg -e -r Robert') > >>> # i.write('y\n') > >>> i.write('wefwef') > >>> i.clos

Re: piping data stream through GPG

2007-06-09 Thread robert
robert wrote: > I played around trying to encrypt/decrypt data through GPG on the fly > (or worse - by using a file) (on Windows first - later to try on Linux too) > > Using os.popen3 like > > >>> i,o,e=os.popen3('gpg -e -r Robert') > >>> # i.write('y\n') > >>> i.write('wefwef') > >>> i.clos

piping data stream through GPG

2007-06-09 Thread robert
I played around trying to encrypt/decrypt data through GPG on the fly (or worse - by using a file) (on Windows first - later to try on Linux too) Using os.popen3 like >>> i,o,e=os.popen3('gpg -e -r Robert') >>> # i.write('y\n') >>> i.write('wefwef') >>> i.close() >>> # e.read(1) >>> o.rea