SSL_CTX_set_tmp_dh_callback.pod 4.5 KB

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