Michael Engelhart wrote:
> I agree. Here's some code I use for hashing passwords.  Warning - I am
> not a security or encryption expert so please be aware that this may not
> be cryptographically secure although I do believe it is much more secure
> than a plain text file.

Uh, I'm not a cryptographer either, so at the risk of sourding uninformed,
what's wrong with a two line script like:

import sha
passwd = 'testing'
passwd_hash = sha.new(passwd).hexdigest()

Is your version much more secure than straight SHA1?

-- 
Randall Randall <[EMAIL PROTECTED]>
'Institute regime change everywhere...
 to "None of the above."' -- Alex Future Bokov



-------------------------------------------------------
This SF.net email is sponsored by: SlickEdit Inc. Develop an edge.
The most comprehensive and flexible code editor you can use.
Code faster. C/C++, C#, Java, HTML, XML, many more. FREE 30-Day Trial.
www.slickedit.com/sourceforge
_______________________________________________
Webware-discuss mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-discuss

Reply via email to