]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/SSL_CTX_config.pod
Deprecate the low level Diffie-Hellman functions.
[thirdparty/openssl.git] / doc / man3 / SSL_CTX_config.pod
CommitLineData
913592d2
DSH
1=pod
2
3=head1 NAME
4
bb9ad09e 5SSL_CTX_config, SSL_config - configure SSL_CTX or SSL structure
913592d2
DSH
6
7=head1 SYNOPSIS
8
9 #include <openssl/ssl.h>
10
11 int SSL_CTX_config(SSL_CTX *ctx, const char *name);
12 int SSL_config(SSL *s, const char *name);
13
14=head1 DESCRIPTION
15
16The functions SSL_CTX_config() and SSL_config() configure an B<SSL_CTX> or
17B<SSL> structure using the configuration B<name>.
18
19=head1 NOTES
20
21By calling SSL_CTX_config() or SSL_config() an application can perform many
22complex tasks based on the contents of the configuration file: greatly
23simplifying application configuration code. A degree of future proofing
24can also be achieved: an application can support configuration features
25in newer versions of OpenSSL automatically.
26
27A configuration file must have been previously loaded, for example using
b97fdb57 28CONF_modules_load_file(). See L<config(5)> for details of the configuration
913592d2
DSH
29file syntax.
30
31=head1 RETURN VALUES
32
33SSL_CTX_config() and SSL_config() return 1 for success or 0 if an error
34occurred.
35
cda77422 36=head1 EXAMPLES
913592d2
DSH
37
38If the file "config.cnf" contains the following:
39
40 testapp = test_sect
41
42 [test_sect]
27b138e9
JS
43 # list of configuration modules
44
913592d2
DSH
45 ssl_conf = ssl_sect
46
47 [ssl_sect]
913592d2
DSH
48 server = server_section
49
50 [server_section]
913592d2
DSH
51 RSA.Certificate = server-rsa.pem
52 ECDSA.Certificate = server-ecdsa.pem
53 Ciphers = ALL:!RC4
54
55An application could call:
56
57 if (CONF_modules_load_file("config.cnf", "testapp", 0) <= 0) {
2947af32
BB
58 fprintf(stderr, "Error processing config file\n");
59 goto err;
913592d2
DSH
60 }
61
62 ctx = SSL_CTX_new(TLS_server_method());
63
64 if (SSL_CTX_config(ctx, "server") == 0) {
65 fprintf(stderr, "Error configuring server.\n");
66 goto err;
67 }
68
69In this example two certificates and the cipher list are configured without
70the need for any additional application code.
71
72=head1 SEE ALSO
73
98ca37e4 74L<ssl(7)>,
b97fdb57 75L<config(5)>,
913592d2
DSH
76L<SSL_CONF_cmd(3)>,
77L<CONF_modules_load_file(3)>
78
79=head1 HISTORY
80
fc5ecadd 81The SSL_CTX_config() and SSL_config() functions were added in OpenSSL 1.1.0.
913592d2 82
e2f92610
RS
83=head1 COPYRIGHT
84
85Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
86
4746f25a 87Licensed under the Apache License 2.0 (the "License"). You may not use
e2f92610
RS
88this file except in compliance with the License. You can obtain a copy
89in the file LICENSE in the source distribution or at
90L<https://www.openssl.org/source/license.html>.
91
92=cut