Re: calculating the MD5 hash of role passwords in C - Mailing list pgsql-general

From Christoph Moench-Tegeder
Subject Re: calculating the MD5 hash of role passwords in C
Date
Msg-id 20200122185847.GA90048@elch.exwg.net
Whole thread Raw
In response to calculating the MD5 hash of role passwords in C  (Matthias Apitz <guru@unixarea.de>)
Responses Re: calculating the MD5 hash of role passwords in C
List pgsql-general
## Matthias Apitz (guru@unixarea.de):

> sisis71=# select rolname, rolpassword from pg_authid where rolname = 'sisis';
>  rolname |             rolpassword
> ---------+-------------------------------------
>  sisis   | md52f128a1fbbecc4b16462e8fc8dda5cd5
> 
> I know the clear text password of the role, it is simple 'sisis123', how
> could I calculate the above MD5 hash from the clear text password, for
> example in C? Which salt is used for the crypt(3) function?

The documentation on pg_authid has the details:
"The MD5 hash will be of the user's password concatenated to their user name."
https://www.postgresql.org/docs/12/catalog-pg-authid.html

Regards,
Christoph

-- 
Spare Space



pgsql-general by date:

Previous
From: Adrian Klaver
Date:
Subject: Re: calculating the MD5 hash of role passwords in C
Next
From: Magnus Hagander
Date:
Subject: Re: Memory usage of pg_basebackup...