]> granicus.if.org Git - postgresql/commit
SSL: Support ECDH key exchange
authorPeter Eisentraut <peter_e@gmx.net>
Sat, 7 Dec 2013 20:11:44 +0000 (15:11 -0500)
committerPeter Eisentraut <peter_e@gmx.net>
Sat, 7 Dec 2013 20:11:44 +0000 (15:11 -0500)
commit3164721462d547fa2d15e2a2f07eb086a3590fd5
tree2f834c8d59ba452f47136cfde94a62d806715492
parent91484409bdd17f330d10671d388b72d4ef1451d7
SSL: Support ECDH key exchange

This sets up ECDH key exchange, when compiling against OpenSSL that
supports EC.  Then the ECDHE-RSA and ECDHE-ECDSA cipher suites can be
used for SSL connections.  The latter one means that EC keys are now
usable.

The reason for EC key exchange is that it's faster than DHE and it
allows to go to higher security levels where RSA will be horribly slow.

There is also new GUC option ssl_ecdh_curve that specifies the curve
name used for ECDH.  It defaults to "prime256v1", which is the most
common curve in use in HTTPS.

From: Marko Kreen <markokr@gmail.com>
Reviewed-by: Adrian Klaver <adrian.klaver@gmail.com>
doc/src/sgml/config.sgml
src/backend/libpq/be-secure.c
src/backend/utils/misc/guc.c
src/backend/utils/misc/postgresql.conf.sample