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
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
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