aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-06-15 01:29:50 +0000
committerBruce Momjian <bruce@momjian.us>2002-06-15 01:29:50 +0000
commit63a354c4bb8856cb3e8ac44cbb436faefca58e4c (patch)
tree1b5b010328818e0f7a3b6947443a3c7e913f4b9c
parent579eab9880b11c2f4260bf6833c561aab65e9e1c (diff)
downloadpostgresql-63a354c4bb8856cb3e8ac44cbb436faefca58e4c.tar.gz
postgresql-63a354c4bb8856cb3e8ac44cbb436faefca58e4c.zip
Make encryption of stored passwords the default, as discussed months ago.
-rw-r--r--doc/src/sgml/runtime.sgml5
-rw-r--r--src/backend/utils/misc/postgresql.conf.sample2
2 files changed, 3 insertions, 4 deletions
diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml
index 78d6dec0aae..5f5b816967c 100644
--- a/doc/src/sgml/runtime.sgml
+++ b/doc/src/sgml/runtime.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.116 2002/05/17 01:19:16 tgl Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.117 2002/06/15 01:29:49 momjian Exp $
-->
<Chapter Id="runtime">
@@ -1518,8 +1518,7 @@ dynamic_library_path = '/usr/local/lib/postgresql:/home/my_project/lib:$libdir'
When a password is specified in <command>CREATE USER</> or
<command>ALTER USER</> without writing either ENCRYPTED or
UNENCRYPTED, this flag determines whether the password is to be
- encrypted. The default is off (do not encrypt the password), but
- this choice may change in a future release.
+ encrypted. The default is on (encrypt the password).
</para>
</listitem>
</varlistentry>
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample
index d18403913ef..c2a3c1e7077 100644
--- a/src/backend/utils/misc/postgresql.conf.sample
+++ b/src/backend/utils/misc/postgresql.conf.sample
@@ -199,6 +199,6 @@
#default_transaction_isolation = 'read committed'
#max_expr_depth = 10000 # min 10
#max_files_per_process = 1000 # min 25
-#password_encryption = false
+#password_encryption = true
#sql_inheritance = true
#transform_null_equals = false