Is there a way to change the PostgreSQL password encryption method from MD5 to SHA?
If Yes, can you please tell me how?
I am using PostgreSQL 9.5
Is there a way to change the PostgreSQL password encryption method from MD5 to SHA?
If Yes, can you please tell me how?
I am using PostgreSQL 9.5
Pg 10
With PostgreSQL 10, you can set
password_encryption
toscram-sha-256
. From the docsSee this post for information about iterations using scram-sha-256
Pg 9.x
This can not be done without actually modifying the source.