1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2012, 2014 */
6 /* See the file NOTICE for conditions of use and distribution. */
8 /* This module provides DANE (RFC6659) support for Exim. See also
9 the draft RFC for DANE-over-SMTP, "SMTP security via opportunistic DANE TLS"
10 (V. Dukhovni, W. Hardaker) - version 10, dated May 25, 2014.
12 The code for DANE support with Openssl was provided by V.Dukhovni.
14 No cryptographic code is included in Exim. All this module does is to call
15 functions from the OpenSSL or GNU TLS libraries. */
20 /* This module is compiled only when it is specifically requested in the
21 build-time configuration. However, some compilers don't like compiling empty
22 modules, so keep them happy with a dummy when skipping the rest. Make it
23 reference itself to stop picky compilers complaining that it is unused, and put
24 in a dummy argument to stop even pickier compilers complaining about infinite
27 #ifndef EXPERIMENTAL_DANE
28 static void dummy(int x
) { dummy(x
-1); }
31 /* Enabling DANE without enabling TLS cannot work. Abort the compilation. */
33 # error DANE support requires that TLS support must be enabled. Abort build.
36 /* DNSSEC support is also required */
37 # ifndef RES_USE_DNSSEC
38 # error DANE support requires that the DNS resolver library supports DNSSEC
42 # include "dane-gnu.c"
44 # include "dane-openssl.c"
48 #endif /* EXPERIMENTAL_DANE */