diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2009-04-01 03:23:50 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2009-04-01 03:23:50 +0000 |
commit | 7cdfa488c7d70f777bfea28d750a987a6310b994 (patch) | |
tree | 3959997e4fdf4facfaf01b5059e78d22b0c472af | |
parent | c029a6a49e3782ec5f1a61eb9a495ebd2a56077d (diff) | |
download | postgresql-7cdfa488c7d70f777bfea28d750a987a6310b994.tar.gz postgresql-7cdfa488c7d70f777bfea28d750a987a6310b994.zip |
Remove last references to the crypt auth method, per Andreas Scherbaum.
-rw-r--r-- | src/backend/libpq/auth.c | 4 | ||||
-rw-r--r-- | src/backend/libpq/pg_hba.conf.sample | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/libpq/auth.c b/src/backend/libpq/auth.c index 625d553a79a..d5c8b71114c 100644 --- a/src/backend/libpq/auth.c +++ b/src/backend/libpq/auth.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/libpq/auth.c,v 1.179 2009/03/22 18:06:35 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/libpq/auth.c,v 1.180 2009/04/01 03:23:50 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -575,7 +575,7 @@ recv_password_packet(Port *port) /*---------------------------------------------------------------- - * MD5 and crypt authentication + * MD5 authentication *---------------------------------------------------------------- */ diff --git a/src/backend/libpq/pg_hba.conf.sample b/src/backend/libpq/pg_hba.conf.sample index b50fa46c198..f1c04577d8e 100644 --- a/src/backend/libpq/pg_hba.conf.sample +++ b/src/backend/libpq/pg_hba.conf.sample @@ -34,8 +34,8 @@ # the number of significant bits in the mask. Alternatively, you can write # an IP address and netmask in separate columns to specify the set of hosts. # -# METHOD can be "trust", "reject", "md5", "crypt", "password", "gss", "sspi", -# "krb5", "ident", "pam", "ldap" or "cert". Note that "password" sends passwords +# METHOD can be "trust", "reject", "md5", "password", "gss", "sspi", "krb5", +# "ident", "pam", "ldap" or "cert". Note that "password" sends passwords # in clear text; "md5" is preferred since it sends encrypted passwords. # # OPTIONS are a set of options for the authentication in the format |