Re: How to store a password encripted in a user defined table

Поиск
Список
Период
Сортировка
От Andrej Ricnik-Bay
Тема Re: How to store a password encripted in a user defined table
Дата
Msg-id b35603930703010021y19b9807awbd2499bce9df952e@mail.gmail.com
обсуждение исходный текст
Ответ на How to store a password encripted in a user defined table  (Eugenio Flores <eflores767003@yahoo.com.mx>)
Ответы Re: How to store a password encripted in a user defined table
Список pgsql-sql
On 3/1/07, Eugenio Flores <eflores767003@yahoo.com.mx> wrote:
> Hello, I wonder if somebody knows how to store passwords in a
> column that is part of a user defined table.
Assuming that your passwords are application specific use
a sha1 or md5 algorithm (depending on how sensitive your data is)
and store that in a varchar or char field.  When the user authenticates
the password gets hashed in the app and compared against the
stored hash.


Cheers,
Andrej


В списке pgsql-sql по дате отправления:

Предыдущее
От: "Sabin Coanda"
Дата:
Сообщение: column definition list of a dynamic record argument
Следующее
От: Eugenio Flores
Дата:
Сообщение: Re: How to store a password encripted in a user defined table