diff --git a/configure.ac b/configure.ac index a566d27..f477d64 100644 --- a/configure.ac +++ b/configure.ac @@ -93,17 +93,17 @@ AS_IF([test "x$have_gsf" = "xyes"], PKG_CHECK_MODULES( [OPENSSL], - [libcrypto >= 0.9.8], + [libcrypto >= 1.1.0], , [PKG_CHECK_MODULES( [OPENSSL], - [openssl >= 0.9.8], + [openssl >= 1.1.0], , [AC_CHECK_LIB( [crypto], [RSA_verify], [OPENSSL_LIBS="-lcrypto ${SOCKETS_LIBS} ${DL_LIBS}"], - [AC_MSG_ERROR([OpenSSL 0.9.8 or later is required. http://www.openssl.org/])], + [AC_MSG_ERROR([OpenSSL 1.1.0 or later is required. http://www.openssl.org/])], [${DL_LIBS}] )] )] diff --git a/osslsigncode.c b/osslsigncode.c index ff74723..a98f38a 100644 --- a/osslsigncode.c +++ b/osslsigncode.c @@ -2666,7 +2666,6 @@ int main(int argc, char **argv) DO_EXIT_1("Failed to parse PKCS#12 file: %s (Wrong password?)\n", pkcs12file); PKCS12_free(p12); } else if (pvkfile != NULL) { -#if OPENSSL_VERSION_NUMBER > 0x10000000 if ((btmp = BIO_new_file(certfile, "rb")) == NULL || ((p7 = d2i_PKCS7_bio(btmp, NULL)) == NULL && (certs = PEM_read_certs(btmp, "")) == NULL)) @@ -2678,9 +2677,6 @@ int main(int argc, char **argv) (pkey = b2i_PVK_bio(btmp, NULL, NULL)) == NULL)) DO_EXIT_1("Failed to read PVK file: %s\n", pvkfile); BIO_free(btmp); -#else - DO_EXIT_1("Can not read keys from PVK files, must compile against a newer version of OpenSSL: %s\n", pvkfile); -#endif } else if (p11engine != NULL && p11module != NULL) { const int CMD_MANDATORY = 0; ENGINE_load_dynamic();