dh: document what the PEM files in apps actually contain.
[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 Files dh2048.pem, and dh4096.pem in the 'apps' directory of the current
66 version of the OpenSSL distribution contain two of the MODP Diffie-Hellman
67 groups for IKE as per RFC 3526.  These files can be converted into C code
68 using the B<-C> option of the L<openssl-dhparam(1)> application. Generation
69 of custom DH parameters during installation should still be preferred to
70 stop an attacker from specializing on a commonly used group. File dh1024.pem
71 contains old parameters that must not be used by applications.
72
73 An application may either directly specify the DH parameters or
74 can supply the DH parameters via a callback function.
75
76 Previous versions of the callback used B<is_export> and B<keylength>
77 parameters to control parameter generation for export and non-export
78 cipher suites. Modern servers that do not support export cipher suites
79 are advised to either use SSL_CTX_set_tmp_dh() or alternatively, use
80 the callback but ignore B<keylength> and B<is_export> and simply
81 supply at least 2048-bit parameters in the callback.
82
83 =head1 RETURN VALUES
84
85 SSL_CTX_set_tmp_dh_callback() and SSL_set_tmp_dh_callback() do not return
86 diagnostic output.
87
88 SSL_CTX_set_tmp_dh() and SSL_set_tmp_dh() do return 1 on success and 0
89 on failure. Check the error queue to find out the reason of failure.
90
91 =head1 EXAMPLES
92
93 Setup DH parameters with a key length of 2048 bits. (Error handling
94 partly left out.)
95
96 Command-line parameter generation:
97
98  $ openssl dhparam -out dh_param_2048.pem 2048
99
100 Code for setting up parameters during server initialization:
101
102  SSL_CTX ctx = SSL_CTX_new();
103
104  DH *dh_2048 = NULL;
105  FILE *paramfile = fopen("dh_param_2048.pem", "r");
106
107  if (paramfile) {
108      dh_2048 = PEM_read_DHparams(paramfile, NULL, NULL, NULL);
109      fclose(paramfile);
110  } else {
111      /* Error. */
112  }
113  if (dh_2048 == NULL)
114      /* Error. */
115  if (SSL_CTX_set_tmp_dh(ctx, dh_2048) != 1)
116      /* Error. */
117  ...
118
119 =head1 SEE ALSO
120
121 L<ssl(7)>, L<SSL_CTX_set_cipher_list(3)>,
122 L<SSL_CTX_set_options(3)>,
123 L<openssl-ciphers(1)>, L<openssl-dhparam(1)>
124
125 =head1 COPYRIGHT
126
127 Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.
128
129 Licensed under the Apache License 2.0 (the "License").  You may not use
130 this file except in compliance with the License.  You can obtain a copy
131 in the file LICENSE in the source distribution or at
132 L<https://www.openssl.org/source/license.html>.
133
134 =cut