]> granicus.if.org Git - pgbouncer/commitdiff
config.txt: Describe MD5 "encryption"
authorMarko Kreen <markokr@gmail.com>
Wed, 28 Mar 2012 06:57:16 +0000 (09:57 +0300)
committerMarko Kreen <markokr@gmail.com>
Wed, 28 Mar 2012 06:57:16 +0000 (09:57 +0300)
doc/config.txt

index aae3cb030ce1bcb4dc2336e1aae23e318a0329ac..3333b9616478d56cb2e03d362b496cc8d05622ba 100644 (file)
@@ -556,7 +556,7 @@ file in following format:
   "username2" "md5abcdef012342345" ...
 
 There should be at least 2 fields, surrounded by double quotes. The first
-field is the username and the second is either a plain-text or a MD5-hashed
+field is the username and the second is either a plain-text or a MD5-hidden
 password.  PgBouncer ignores the rest of the line.
 
 This file format is equivalent to text files used by PostgreSQL 8.x
@@ -567,6 +567,12 @@ Since PostgreSQL 9.0, the text files are not used anymore.  Thus the
 auth file needs to be generated.   See `./etc/mkauth.py` for sample script
 to generate auth file from `pg_shadow` table.
 
+PostgreSQL MD5-hidden password format:
+
+  "md5" + md5(password + username)
+
+So user `admin` with password `1234` will have MD5-hidden password
+`md545f2603610af569b6155c45067268c6b`.
 
 == EXAMPLE ==