Skip to content

Commit 63a354c

Browse files
committed
Make encryption of stored passwords the default, as discussed months ago.
1 parent 579eab9 commit 63a354c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

doc/src/sgml/runtime.sgml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.116 2002/05/17 01:19:16 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.117 2002/06/15 01:29:49 momjian Exp $
33
-->
44

55
<Chapter Id="runtime">
@@ -1518,8 +1518,7 @@ dynamic_library_path = '/usr/local/lib/postgresql:/home/my_project/lib:$libdir'
15181518
When a password is specified in <command>CREATE USER</> or
15191519
<command>ALTER USER</> without writing either ENCRYPTED or
15201520
UNENCRYPTED, this flag determines whether the password is to be
1521-
encrypted. The default is off (do not encrypt the password), but
1522-
this choice may change in a future release.
1521+
encrypted. The default is on (encrypt the password).
15231522
</para>
15241523
</listitem>
15251524
</varlistentry>

src/backend/utils/misc/postgresql.conf.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,6 @@
199199
#default_transaction_isolation = 'read committed'
200200
#max_expr_depth = 10000 # min 10
201201
#max_files_per_process = 1000 # min 25
202-
#password_encryption = false
202+
#password_encryption = true
203203
#sql_inheritance = true
204204
#transform_null_equals = false

0 commit comments

Comments
 (0)