View | Details | Raw Unified | Return to bug 3238 | Differences between
and this patch

Collapse All | Expand All

(-)a/configure.ac (+1 lines)
Lines 2867-2872 if test "x$openssl" = "xyes" ; then Link Here
2867
		EVP_CIPHER_CTX_iv \
2867
		EVP_CIPHER_CTX_iv \
2868
		EVP_CIPHER_CTX_iv_noconst \
2868
		EVP_CIPHER_CTX_iv_noconst \
2869
		EVP_CIPHER_CTX_get_iv \
2869
		EVP_CIPHER_CTX_get_iv \
2870
		EVP_CIPHER_CTX_get_updated_iv \
2870
		EVP_CIPHER_CTX_set_iv \
2871
		EVP_CIPHER_CTX_set_iv \
2871
		RSA_get0_crt_params \
2872
		RSA_get0_crt_params \
2872
		RSA_get0_factors \
2873
		RSA_get0_factors \
(-)a/openbsd-compat/openssl-compat.h (+4 lines)
Lines 113-120 int DSA_set0_key(DSA *d, BIGNUM *pub_key, BIGNUM *priv_key); Link Here
113
#endif /* HAVE_DSA_SET0_KEY */
113
#endif /* HAVE_DSA_SET0_KEY */
114
114
115
#ifndef HAVE_EVP_CIPHER_CTX_GET_IV
115
#ifndef HAVE_EVP_CIPHER_CTX_GET_IV
116
# ifdef HAVE_EVP_CIPHER_CTX_GET_UPDATED_IV
117
#  define EVP_CIPHER_CTX_get_iv EVP_CIPHER_CTX_get_updated_iv
118
# else /* HAVE_EVP_CIPHER_CTX_GET_UPDATED_IV */
116
int EVP_CIPHER_CTX_get_iv(const EVP_CIPHER_CTX *ctx,
119
int EVP_CIPHER_CTX_get_iv(const EVP_CIPHER_CTX *ctx,
117
    unsigned char *iv, size_t len);
120
    unsigned char *iv, size_t len);
121
# endif /* HAVE_EVP_CIPHER_CTX_GET_UPDATED_IV */
118
#endif /* HAVE_EVP_CIPHER_CTX_GET_IV */
122
#endif /* HAVE_EVP_CIPHER_CTX_GET_IV */
119
123
120
#ifndef HAVE_EVP_CIPHER_CTX_SET_IV
124
#ifndef HAVE_EVP_CIPHER_CTX_SET_IV

Return to bug 3238