summaryrefslogtreecommitdiffstats
path: root/crypto/evp
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/evp')
-rw-r--r--crypto/evp/evp_lib.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/crypto/evp/evp_lib.c b/crypto/evp/evp_lib.c
index 63226566c2..50f12b4323 100644
--- a/crypto/evp/evp_lib.c
+++ b/crypto/evp/evp_lib.c
@@ -262,13 +262,6 @@ void *EVP_CIPHER_CTX_cipher_data(const EVP_CIPHER_CTX *ctx)
return ctx->cipher_data;
}
-/* FIXME: temporary until EVP_CIPHER goes opaque */
-void EVP_CIPHER_CTX_new_cipher_data(EVP_CIPHER_CTX *ctx, size_t size)
-{
- if (ctx->cipher_data == NULL && ctx->cipher->ctx_size == 0)
- ctx->cipher_data = OPENSSL_zalloc(size);
-}
-
int EVP_CIPHER_iv_length(const EVP_CIPHER *cipher)
{
return cipher->iv_len;