Hi, What is a good way to store passwords using php and postgresql and what columns/column types do I need to do so? I understand I want to salt and hash the passwords but don't quite grasp how to actually implement it. Also is pgcrypto an option here? Thanks asked 27 Mar '11, 15:04 Paddy Martinez |
If you want a pure PHP solution you should not use pycrypto as it is a python library. In general this question has no simple answer since there are so many ever changing ways of encrypting your passwords, instead I recommended you read the following, pgcrypto is a postgresql library
(27 Mar '11, 15:28)
Paddy Martinez
My fault, I am a python developer and I read pycrypto.
(27 Mar '11, 15:35)
johns
We can make
(17 Jun '11, 11:09)
seanf
|