Обсуждение: create user xxx with md5 string?

Поиск
Список
Период
Сортировка

create user xxx with md5 string?

От
Gerardo Herzig
Дата:
Hi all. Im triyng, with no success, to create a user, and set the
password with a md5 string.

I did this:

comechingon:~ # echo -n 123 | md5sum
202cb962ac59075b964b07152d234b70  -


Ok, so then
test=# CREATE USER foobar ENCRYPTED PASSWORD
'md5202cb962ac59075b964b07152d234b70'; --I have to add 'md5' at the
begging of the string
CREATE ROLE


test=# SELECT * from pg_shadow where usename='foobar';usename | usesysid | usecreatedb | usesuper | usecatupd |passwd
            | valuntil | useconfig
 

---------+----------+-------------+----------+-----------+-------------------------------------+----------+-----------foobar
|  3250592 | f           | f        | f         |
 
md5202cb962ac59075b964b07152d234b70 |          |
(1 row)

test=# \c test foobar
Password for user foobar: [123, off course]
FATAL:  password authentication failed for user "foobar"
Previous connection kept

test=# SHOW server_version;server_version
----------------8.3.6

Im wondering which my mystake is:
Using md5sum?

I do have 'md5' as validation mechanism in pg_hba.conf

Any hints?
Thanks!

Gerardo


Re: create user xxx with md5 string?

От
Tom Lane
Дата:
Gerardo Herzig <gherzig@fmed.uba.ar> writes:
> Hi all. Im triyng, with no success, to create a user, and set the
> password with a md5 string.

The correct method for computing the md5'd password includes the
username.  I think it's 'md5' || md5sum(password || username)
but look at the code or docs.
        regards, tom lane


Re: create user xxx with md5 string?

От
Dmitriy Igrishin
Дата:
Hello all.
Tom right. Encrypted MD5 passwords computed as md5(password || test10). I checked.

Regards, Dmitriy Igrishin. 

2009/12/3 Tom Lane <tgl@sss.pgh.pa.us>
Gerardo Herzig <gherzig@fmed.uba.ar> writes:
> Hi all. Im triyng, with no success, to create a user, and set the
> password with a md5 string.

The correct method for computing the md5'd password includes the
username.  I think it's 'md5' || md5sum(password || username)
but look at the code or docs.

                       regards, tom lane

--
Sent via pgsql-sql mailing list (pgsql-sql@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-sql

Re: create user xxx with md5 string?

От
Dmitriy Igrishin
Дата:
Sorry for my prev post. I mean md5(password || username).
'test10' is a username on which i checked. :) Sorry!

2009/12/3 Dmitriy Igrishin <dmitigr@gmail.com>
Hello all.
Tom right. Encrypted MD5 passwords computed as md5(password || test10). I checked.

Regards, Dmitriy Igrishin. 

2009/12/3 Tom Lane <tgl@sss.pgh.pa.us>

Gerardo Herzig <gherzig@fmed.uba.ar> writes:
> Hi all. Im triyng, with no success, to create a user, and set the
> password with a md5 string.

The correct method for computing the md5'd password includes the
username.  I think it's 'md5' || md5sum(password || username)
but look at the code or docs.

                       regards, tom lane

--
Sent via pgsql-sql mailing list (pgsql-sql@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-sql


Re: create user xxx with md5 string?

От
Gerardo Herzig
Дата:
Tom Lane wrote:
> Gerardo Herzig <gherzig@fmed.uba.ar> writes:
>> Hi all. Im triyng, with no success, to create a user, and set the
>> password with a md5 string.
> 
> The correct method for computing the md5'd password includes the
> username.  I think it's 'md5' || md5sum(password || username)
> but look at the code or docs.
> 
>             regards, tom lane
> 
Perfect! I could not find that in the docs.
It works. Thanks!

Gerardo