search for: have_evp_cipher_ctx_get_iv

Displaying 2 results from an estimated 2 matches for "have_evp_cipher_ctx_get_iv".

2018 Nov 05
2
[PATCH] Fix configure check for EVP_CIPHER_CTX_set_iv
...f linking statically). --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 10696513..199975fe 100644 --- a/configure.ac +++ b/configure.ac @@ -2865,7 +2865,7 @@ if test "x$openssl" = "xyes" ; then [AC_DEFINE([HAVE_EVP_CIPHER_CTX_GET_IV], [1], [Define if libcrypto has EVP_CIPHER_CTX_get_iv])]) AC_SEARCH_LIBS([EVP_CIPHER_CTX_set_iv], [crypto], - [AC_DEFINE([HAVE_EVP_CIPHER_CTX_GET_IV], [1], + [AC_DEFINE([HAVE_EVP_CIPHER_CTX_SET_IV], [1], [Define if libcrypto has EVP_CIPHER_CTX_set_iv])]) AC_SEARCH_LIBS([RSA_ge...
2018 Nov 08
2
[PATCH] Fix configure check for EVP_CIPHER_CTX_set_iv
...VP_CIPHER_CTX_set_iv to get replaced unnecessarily (or > > a duplicate symbol error if linking statically). > > > > Applied, thanks. should this go on the V_7_9 branch too? > > AC_SEARCH_LIBS([EVP_CIPHER_CTX_set_iv], [crypto], > > - [AC_DEFINE([HAVE_EVP_CIPHER_CTX_GET_IV], [1], > > + [AC_DEFINE([HAVE_EVP_CIPHER_CTX_SET_IV], [1], > > [Define if libcrypto has EVP_CIPHER_CTX_set_iv])]) > > > > AC_SEARCH_LIBS sets that definition by default anyway. Damien, is there > any reason we can't delete all those...