Import Upstream version 4.89
[hcoop/debian/exim4.git] / src / pdkim / crypt_ver.h
1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
4
5 /* Copyright (c) Jeremy Harris 2016 */
6 /* See the file NOTICE for conditions of use and distribution. */
7
8 /* RSA and SHA 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 RSA_GNUTLS
19 # else
20 # define RSA_GCRYPT
21 # endif
22
23 #else
24 # define RSA_OPENSSL
25 #endif
26