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

Поиск
Список
Период
Сортировка
От Eugenio Flores
Тема Re: How to store a password encripted in a user defined table
Дата
Msg-id 675205.64473.qm@web55615.mail.re4.yahoo.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  (John DeSoi <desoi@pgedit.com>)
Список pgsql-sql
Thanks Andrej. But how can I use such algoritms in postgresql? arey they defined in a function that I can call?
 
Or, do I have to code one of those algorithm to use it in my application?

----- Mensaje original ----
De: Andrej Ricnik-Bay <andrej.groups@gmail.com>
Para: Eugenio Flores <eflores767003@yahoo.com.mx>; PostgreSQL <pgsql-sql@postgresql.org>
Enviado: jueves, 1 de marzo, 2007 0:21:06
Asunto: Re: [SQL] How to store a password encripted in a user defined table

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

---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
       choose an index scan if your joining column's datatypes do not
       match



Do You Yahoo!? La mejor conexión a Internet y 2GB extra a tu correo por $100 al mes. http://net.yahoo.com.mx

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

Предыдущее
От: "Andrej Ricnik-Bay"
Дата:
Сообщение: Re: How to store a password encripted in a user defined table
Следующее
От: Shane Ambler
Дата:
Сообщение: Re: How to union table without union statement?