Re: md5 again

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: md5 again
Дата
Msg-id 200007111500.LAA03436@candle.pha.pa.us
обсуждение исходный текст
Ответ на md5 again  (Vince Vielhaber <vev@michvhf.com>)
Ответы Re: md5 again  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
> direction    what
> ----------------------------------------------
> CL -> PG    username
> PG -> CL    random salt
> CL -> PG    plaintext passwd
> 
> 
> CL -> PG    username
> PG -> CL    user salt 
^^^^^^^^^^^^^^^^^^^^^^^^^
> PG -> CL    random salt
> CL -> PG    encrypted passwd
> 


MD5(MD5(username+user_salt)+random_salt)

Postmaster takes its pg_shadow MD5(username+user_salt) and does another
MD5 with the random salt and compares it with what was sent from the
client.

If the connection is defined as requiring crypt or password, only this
MD5 method can be used.  If trusted is defined, cleartext passwords can
be accepted.

Don't bother encrypting the username.  No security is gained.

--  Bruce Momjian                        |  http://candle.pha.pa.us pgman@candle.pha.pa.us               |  (610)
853-3000+  If your life is a hard drive,     |  830 Blythe Avenue +  Christ can be your backup.        |  Drexel Hill,
Pennsylvania19026
 


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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: AW: update on TOAST status'
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: postmaster errors with index on temp table?