From c1054bb4d2a2e730d8ecb25037904f7d9a7f137d Mon Sep 17 00:00:00 2001 From: Jakub Zelenka Date: Sun, 24 Jul 2016 18:33:29 +0100 Subject: Add EVP_ENCODE_CTX_copy Reviewed-by: Tim Hudson Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/1344) --- include/openssl/evp.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/openssl/evp.h b/include/openssl/evp.h index 999660365c..10e048a795 100644 --- a/include/openssl/evp.h +++ b/include/openssl/evp.h @@ -608,6 +608,7 @@ __owur int EVP_SealFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl); EVP_ENCODE_CTX *EVP_ENCODE_CTX_new(void); void EVP_ENCODE_CTX_free(EVP_ENCODE_CTX *ctx); +int EVP_ENCODE_CTX_copy(EVP_ENCODE_CTX *dctx, EVP_ENCODE_CTX *sctx); int EVP_ENCODE_CTX_num(EVP_ENCODE_CTX *ctx); void EVP_EncodeInit(EVP_ENCODE_CTX *ctx); int EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, -- cgit v1.2.3