Displaying 2 results from an estimated 2 matches for "evp_cipher_ctx_get_iv".
2018 Nov 08
2
[PATCH] Fix configure check for EVP_CIPHER_CTX_set_iv
...PHER_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...
2018 Nov 05
2
[PATCH] Fix configure check for EVP_CIPHER_CTX_set_iv
...king 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...