Constify X509_PUBKEY_get(), X509_PUBKEY_get0(), and X509_PUBKEY_get0_param()
[openssl.git] / doc / man3 / SSL_CTX_set_tmp_dh_callback.pod
1 =pod
2
3 =head1 NAME
4
5 SSL_CTX_set_tmp_dh_callback, SSL_CTX_set_tmp_dh, SSL_set_tmp_dh_callback, SSL_set_tmp_dh - handle DH keys for ephemeral key exchange
6
7 =head1 SYNOPSIS
8
9  #include <openssl/ssl.h>
10
11  void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx,
12                                   DH *(*tmp_dh_callback)(SSL *ssl, int is_export,
13                                                          int keylength));
14  long SSL_CTX_set_tmp_dh(SSL_CTX *ctx, DH *dh);
15
16  void SSL_set_tmp_dh_callback(SSL *ctx,
17                               DH *(*tmp_dh_callback)(SSL *ssl, int is_export,
18                                                      int keylength));
19  long SSL_set_tmp_dh(SSL *ssl, DH *dh)
20
21 =head1 DESCRIPTION
22
23 SSL_CTX_set_tmp_dh_callback() sets the callback function for B<ctx> to be
24 used when a DH parameters are required to B<tmp_dh_callback>.
25 The callback is inherited by all B<ssl> objects created from B<ctx>.
26
27 SSL_CTX_set_tmp_dh() sets DH parameters to be used to be B<dh>.
28 The key is inherited by all B<ssl> objects created from B<ctx>.
29
30 SSL_set_tmp_dh_callback() sets the callback only for B<ssl>.
31
32 SSL_set_tmp_dh() sets the parameters only for B<ssl>.
33
34 These functions apply to SSL/TLS servers only.
35
36 =head1 NOTES
37
38 When using a cipher with RSA authentication, an ephemeral DH key exchange
39 can take place. Ciphers with DSA keys always use ephemeral DH keys as well.
40 In these cases, the session data are negotiated using the
41 ephemeral/temporary DH key and the key supplied and certified
42 by the certificate chain is only used for signing.
43 Anonymous ciphers (without a permanent server key) also use ephemeral DH keys.
44
45 Using ephemeral DH key exchange yields forward secrecy, as the connection
46 can only be decrypted, when the DH key is known. By generating a temporary
47 DH key inside the server application that is lost when the application
48 is left, it becomes impossible for an attacker to decrypt past sessions,
49 even if he gets hold of the normal (certified) key, as this key was
50 only used for signing.
51
52 In order to perform a DH key exchange the server must use a DH group
53 (DH parameters) and generate a DH key. The server will always generate
54 a new DH key during the negotiation.
55
56 As generating DH parameters is extremely time consuming, an application
57 should not generate the parameters on the fly but supply the parameters.
58 DH parameters can be reused, as the actual key is newly generated during
59 the negotiation. The risk in reusing DH parameters is that an attacker
60 may specialize on a very often used DH group. Applications should therefore
61 generate their own DH parameters during the installation process using the
62 openssl L<openssl-dhparam(1)> application. This application
63 guarantees that "strong" primes are used.
64
65 An application may either directly specify the DH parameters or
66 can supply the DH parameters via a callback function.
67
68 Previous versions of the callback used B<is_export> and B<keylength>
69 parameters to control parameter generation for export and non-export
70 cipher suites. Modern servers that do not support export cipher suites
71 are advised to either use SSL_CTX_set_tmp_dh() or alternatively, use
72 the callback but ignore B<keylength> and B<is_export> and simply
73 supply at least 2048-bit parameters in the callback.
74
75 =head1 RETURN VALUES
76
77 SSL_CTX_set_tmp_dh_callback() and SSL_set_tmp_dh_callback() do not return
78 diagnostic output.
79
80 SSL_CTX_set_tmp_dh() and SSL_set_tmp_dh() do return 1 on success and 0
81 on failure. Check the error queue to find out the reason of failure.
82
83 =head1 EXAMPLES
84
85 Setup DH parameters with a key length of 2048 bits. (Error handling
86 partly left out.)
87
88 Command-line parameter generation:
89
90  $ openssl dhparam -out dh_param_2048.pem 2048
91
92 Code for setting up parameters during server initialization:
93
94  SSL_CTX ctx = SSL_CTX_new();
95
96  DH *dh_2048 = NULL;
97  FILE *paramfile = fopen("dh_param_2048.pem", "r");
98
99  if (paramfile) {
100      dh_2048 = PEM_read_DHparams(paramfile, NULL, NULL, NULL);
101      fclose(paramfile);
102  } else {
103      /* Error. */
104  }
105  if (dh_2048 == NULL)
106      /* Error. */
107  if (SSL_CTX_set_tmp_dh(ctx, dh_2048) != 1)
108      /* Error. */
109  ...
110
111 =head1 SEE ALSO
112
113 L<ssl(7)>, L<SSL_CTX_set_cipher_list(3)>,
114 L<SSL_CTX_set_options(3)>,
115 L<openssl-ciphers(1)>, L<openssl-dhparam(1)>
116
117 =head1 COPYRIGHT
118
119 Copyright 2001-2020 The OpenSSL Project Authors. All Rights Reserved.
120
121 Licensed under the Apache License 2.0 (the "License").  You may not use
122 this file except in compliance with the License.  You can obtain a copy
123 in the file LICENSE in the source distribution or at
124 L<https://www.openssl.org/source/license.html>.
125
126 =cut