Re: [Tutor] encryption for files/passwords

2007-05-19 Thread Alan Gauld
"Rohan Deshpande" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Thanks, but I want to be able to encrypt *files* with passwords in > them.. the passwords being the sensitive data :) > > Any other ideas? Have you any more specific requirements that prevents the use of the modules

Re: [Tutor] encryption for files/passwords

2007-05-19 Thread Rohan Deshpande
Thanks, but I want to be able to encrypt *files* with passwords in them.. the passwords being the sensitive data :) Any other ideas? On 5/19/07, Ben Sherman <[EMAIL PROTECTED]> wrote: > On 5/18/07, Rohan Deshpande <[EMAIL PROTECTED]> wrote: > > > Hey all, > > > > I am writing a small python scrip

Re: [Tutor] encryption for files/passwords

2007-05-18 Thread Ben Sherman
On 5/18/07, Rohan Deshpande <[EMAIL PROTECTED]> wrote: Hey all, I am writing a small python script to maintain some passwords and identity info. All the data is in an external file. what is the best way to encrypt/decrypt this file's data using a key? I am new to encryption methods let alone

[Tutor] encryption for files/passwords

2007-05-18 Thread Rohan Deshpande
Hey all, I am writing a small python script to maintain some passwords and identity info. All the data is in an external file. what is the best way to encrypt/decrypt this file's data using a key? I am new to encryption methods let alone how to do it in python. I had a look at python-crypto, ez