Merge branch 'master' into 4.next
[exim.git] / src / src / pdkim / crypt_ver.h
1 /*************************************************
2 *     Exim - an Internet mail transport agent    *
3 *************************************************/
4
5 /* Copyright (c) Jeremy Harris 2017 */
6 /* See the file NOTICE for conditions of use and distribution. */
7
8 /* Signing and hashing routine selection for PDKIM */
9
10 #include "../exim.h"
11 #include "../sha_ver.h"
12
13
14 #ifdef USE_GNUTLS
15 # include <gnutls/gnutls.h>
16
17 # if GNUTLS_VERSION_NUMBER >= 0x30000
18 #  define SIGN_GNUTLS
19 # else
20 #  define SIGN_GCRYPT
21 # endif
22
23 #else
24 # define SIGN_OPENSSL
25 #endif
26