X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fevp%2Fevp_lib.c;h=63226566c22fd26c9aa3d68d4fc3560afa8e4280;hp=0b062db49a9c9bcccd4db9aa5ce6e14431beb8c6;hb=e79f877333dcdc2ca51442d8339253e29c31a0d6;hpb=480d33237df3894ea8df6f2a2e2076fa30efb205 diff --git a/crypto/evp/evp_lib.c b/crypto/evp/evp_lib.c index 0b062db49a..63226566c2 100644 --- a/crypto/evp/evp_lib.c +++ b/crypto/evp/evp_lib.c @@ -221,6 +221,11 @@ int EVP_CIPHER_CTX_block_size(const EVP_CIPHER_CTX *ctx) return ctx->cipher->block_size; } +int EVP_CIPHER_impl_ctx_size(const EVP_CIPHER *e) +{ + return e->ctx_size; +} + int EVP_Cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, unsigned int inl) {