X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/2592e6c0eda522da0f6a33f4d32e33598288eb6e..d73e45df63ef6602fa32bd3e196d20735a0b69b5:/src/src/pdkim/crypt_ver.h diff --git a/src/src/pdkim/crypt_ver.h b/src/src/pdkim/crypt_ver.h index 2a9dde952..439d99b3a 100644 --- a/src/src/pdkim/crypt_ver.h +++ b/src/src/pdkim/crypt_ver.h @@ -5,28 +5,22 @@ /* Copyright (c) Jeremy Harris 2016 */ /* See the file NOTICE for conditions of use and distribution. */ -/* RSA and SHA routine selection for PDKIM */ +/* Signing and hashing routine selection for PDKIM */ #include "../exim.h" +#include "../sha_ver.h" #ifdef USE_GNUTLS # include -# if GNUTLS_VERSION_NUMBER > 0x020c00 -# define RSA_GNUTLS +# if GNUTLS_VERSION_NUMBER >= 0x30000 +# define SIGN_GNUTLS # else -# define RSA_GCRYPT -# endif - -# if GNUTLS_VERSION_NUMBER >= 0x020a00 -# define SHA_GNUTLS -# else -# define SHA_GCRYPT +# define SIGN_GCRYPT # endif #else -# define RSA_OPENSSL -# define SHA_OPENSSL +# define SIGN_OPENSSL #endif