diff options
author | Tom Lane | 2009-04-01 03:23:50 +0000 |
---|---|---|
committer | Tom Lane | 2009-04-01 03:23:50 +0000 |
commit | 1c19ec3e763e83ba0b31e9bccce0cedbe2d74e72 (patch) | |
tree | 576d895393cb785e90f33f9e9263c5fcbcb22509 | |
parent | aae22715cce83440f6be344b346f9a3020d76fab (diff) |
Remove last references to the crypt auth method, per Andreas Scherbaum.
-rw-r--r-- | src/backend/libpq/auth.c | 2 | ||||
-rw-r--r-- | src/backend/libpq/pg_hba.conf.sample | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/libpq/auth.c b/src/backend/libpq/auth.c index e8eb2342f5..d57fed2a84 100644 --- a/src/backend/libpq/auth.c +++ b/src/backend/libpq/auth.c @@ -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 b50fa46c19..f1c04577d8 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 |