Re: How crypting passwords in postgres DB?

Поиск
Список
Период
Сортировка
От Neil Conway
Тема Re: How crypting passwords in postgres DB?
Дата
Msg-id 20001222125455.A547@klamath.dyndns.org
обсуждение исходный текст
Ответ на How crypting passwords in postgres DB?  (ouldm@linuxatbusiness.com)
Список pgsql-general
On Fri, Dec 22, 2000 at 02:14:59PM +0100, ouldm@linuxatbusiness.com wrote:
> However, passwords appear clear in the database.
> How  passwords can be crypted in the database?

Postgres doesn't include any password/hashing functions
natively. So you'll either need to write the hashing functions
yourself (someone posted MD5 and SHA1 functions on the list
earlier), or do the hashing in your client code (i.e.
when the user creates an account, take the cleartext password,
get the MD5/SHA1 digest of it, and store the digest in
the database).

HTH,

Neil

--
Neil Conway <neilconway@home.com>
Get my GnuPG key from: http://klamath.dyndns.org/mykey.asc
Encrypted mail welcomed

In the beginning the Universe was created. This has made a lot of
people very angry and been widely regarded as a bad move.
        -- Douglas Adams

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: allowing users access to a trusted C function
Следующее
От: "Tim Barnard"
Дата:
Сообщение: Max sessions question