From 43d956fa65c66629f335b7bb7d4e190da5e99da7 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Thu, 9 Jul 2015 18:24:24 +0100 Subject: Demo server using SSL_CTX_config Reviewed-by: Richard Levitte --- demos/bio/cmod.cnf | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 demos/bio/cmod.cnf (limited to 'demos/bio/cmod.cnf') diff --git a/demos/bio/cmod.cnf b/demos/bio/cmod.cnf new file mode 100644 index 0000000000..4c45dfb781 --- /dev/null +++ b/demos/bio/cmod.cnf @@ -0,0 +1,24 @@ +# Example config module configuration + +# Name supplied by application to CONF_modules_load_file +# and section containing configuration +testapp = test_sect + +[test_sect] +# list of confuration modules + +# SSL configuration module +ssl_conf = ssl_sect + +[ssl_sect] +# list of SSL configurations +server = server_sect + +[server_sect] +# Only support 3 curves +Curves = P-521:P-384:P-256 +# Restricted signature algorithms +SignatureAlgorithms = RSA+SHA512:ECDSA+SHA512 +# Certificates and keys +RSA.Certificate=server.pem +ECDSA.Certificate=server-ec.pem -- cgit v1.2.3