Fwd: Creating md5 passwords in PHP for the PostgreSQL pg_shadow table

Поиск
Список
Период
Сортировка
От Matthew Horoschun
Тема Fwd: Creating md5 passwords in PHP for the PostgreSQL pg_shadow table
Дата
Msg-id 4E773CE0-2CD5-11D7-B205-000393B3A702@canprint.com.au
обсуждение исходный текст
Список pgsql-php
Hi All,

I've figured this out myself... but I thought I might just let the list
archives know so that others don't need to work it out for themselves.

To create a md5 password suitable for use in the PostgreSQL pg_shadow
table:

$md5_passwd = 'md5' . md5( $password . $username );

The username acts as salt.


Matthew.


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

Предыдущее
От: Matthew Horoschun
Дата:
Сообщение: Re: Creating md5 passwords in PHP for the PostgreSQL pg_shadow table
Следующее
От: Fery@mik.co.id
Дата:
Сообщение: Re: Creating md5 passwords in PHP for the PostgreSQL pg_shadow table