/************************************************* * Exim - an Internet mail transport agent * *************************************************/ /* Copyright (c) Jeremy Harris 2016 */ /* See the file NOTICE for conditions of use and distribution. */ /* RSA and SHA routine selection for PDKIM */ #include "../exim.h" #ifdef USE_GNUTLS # include # if GNUTLS_VERSION_NUMBER > 0x020c00 # define RSA_GNUTLS # else # define RSA_GCRYPT # endif # if GNUTLS_VERSION_NUMBER >= 0x020a00 # define SHA_GNUTLS # else # define SHA_GCRYPT # endif #else # define RSA_OPENSSL # define SHA_OPENSSL #endif