From: Bruce Momjian Date: Sat, 29 Dec 2007 04:27:02 +0000 (+0000) Subject: Document that null ciphers are not recommended. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=fb51be19755d8a213151d53cd9c520f15cd8e224;p=users%2Fbernd%2Fpostgres.git Document that null ciphers are not recommended. Mark Mielke --- diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index 7b6d920d8c..8924490057 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -1604,12 +1604,20 @@ $ kill -INT `head -1 /usr/local/pgsql/data/postmaster.pid`OpenSSL configuration file, you can specify ciphers specifically for use by the database server by modifying in - postgresql .conf. It is possible to have authentication - without the overhead of encryption by using NULL-SHA or - NULL-MD5 ciphers. However, a man-in-the-middle could read - and pass communications between client and server. + postgresql .conf. + + + It is possible to have authentication without encryption overhead by + using NULL-SHA or NULL-MD5 ciphers. However, + a man-in-the-middle could read and pass communications between client + and server. Also, encryption overhead is minimal compared to the + overhead of authentication. For these reasons NULL ciphers are not + recommended. + + + To start in SSL mode, the files server.crt and server.key must exist in the server's data directory.