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

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

From
Matthew Horoschun
Date:
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.