Re: Password encryption - Mailing list pgsql-admin

From Adrian Klaver
Subject Re: Password encryption
Date
Msg-id 7dee6678-0114-782b-6c6e-5fa8ad08dd05@aklaver.com
Whole thread Raw
In response to Password encryption  (Azimuddin Mohammed <azimeiu@gmail.com>)
List pgsql-admin
On 04/15/2018 05:22 PM, Azimuddin Mohammed wrote:
> Hello,
> Is there a way I can encrypt the default password column of db user 
> password. I know by default the password is encrypted as md5, can we 
> encrypt that of shadow column for password?

Are you talking about this view?:

https://www.postgresql.org/docs/10/static/view-pg-shadow.html

If so that is only readable by superusers:

production=# \c - aklaver
You are now connected to database "production" as user "aklaver".

production=> select * from pg_shadow ;
ERROR:  permission denied for relation pg_shadow

production=> \c - postgres
You are now connected to database "production" as user "postgres".

production=# select * from pg_shadow ;
     usename     | usesysid | usecreatedb | usesuper | userepl | 
usebypassrls |               passwd                | valuntil | useconfig

...

Assuming someone is in your database as a superuser, access to the 
password field in pg_shadow is pretty much moot.

> 
> Thanks in advance


-- 
Adrian Klaver
adrian.klaver@aklaver.com


pgsql-admin by date:

Previous
From: Azimuddin Mohammed
Date:
Subject: Password encryption
Next
From: Ron
Date:
Subject: Re: Password encryption