Securing passwords stored inside of a database field using Python
Jeremy Hylton
jeremy at alum.mit.edu
Wed Jan 17 18:02:05 EST 2001
More information about the Python-list mailing list
Wed Jan 17 18:02:05 EST 2001
- Previous message (by thread): Securing passwords stored inside of a database field using Python
- Next message (by thread): Securing passwords stored inside of a database field using Python
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
There's more to securing passwords that just picking an encryption algorithm -- and keyed hashes seem to be more common that encryption. PKCS #5 describes one good way to encrypt and decrypt data using passwords. It's implemented in Pisces. PKCS #5: http://www.rsasecurity.com/rsalabs/pkcs/pkcs-5/ Pisces: http://www.cnri.reston.va.us/software/pisces/ -- -- Jeremy Hylton, <http://www.python.org/~jeremy/> Sent via Deja.com http://www.deja.com/
- Previous message (by thread): Securing passwords stored inside of a database field using Python
- Next message (by thread): Securing passwords stored inside of a database field using Python
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list