1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) Jeremy Harris 2018 */
6 /* See the file NOTICE for conditions of use and distribution. */
7 /* SPDX-License-Identifier: GPL-2.0-only */
9 /* SHA routine selection */
13 /* Please be aware that pulling in extra headers which are not in the system
14 * includes may require careful juggling of CFLAGS in
15 * scripts/Configure-Makefile -- that logic should be kept in sync with this.
16 * In particular, building with just something like USE_OPENSSL_PC=openssl
17 * and not massaging CFLAGS in Local/Makefile is fully supported.
22 # define EXIM_HAVE_SHA2
25 # include <gnutls/gnutls.h>
27 # if GNUTLS_VERSION_NUMBER >= 0x020a00
29 # if GNUTLS_VERSION_NUMBER >= 0x030500
30 # define EXIM_HAVE_SHA3 /*MMMM*/
39 # include <openssl/ssl.h>
40 # if (OPENSSL_VERSION_NUMBER >= 0x10101000L) && !defined(LIBRESSL_VERSION_NUMBER)
41 # define EXIM_HAVE_SHA3