summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/evp.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/evp/evp.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/evp/evp.h b/src/lib/libcrypto/evp/evp.h
index 1684b13e49..c09e2c046a 100644
--- a/src/lib/libcrypto/evp/evp.h
+++ b/src/lib/libcrypto/evp/evp.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: evp.h,v 1.68 2018/08/24 20:22:15 tb Exp $ */ 1/* $OpenBSD: evp.h,v 1.69 2018/09/12 06:35:38 djm Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -496,6 +496,10 @@ int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ctx);
496int EVP_CIPHER_CTX_block_size(const EVP_CIPHER_CTX *ctx); 496int EVP_CIPHER_CTX_block_size(const EVP_CIPHER_CTX *ctx);
497int EVP_CIPHER_CTX_key_length(const EVP_CIPHER_CTX *ctx); 497int EVP_CIPHER_CTX_key_length(const EVP_CIPHER_CTX *ctx);
498int EVP_CIPHER_CTX_iv_length(const EVP_CIPHER_CTX *ctx); 498int EVP_CIPHER_CTX_iv_length(const EVP_CIPHER_CTX *ctx);
499int EVP_CIPHER_CTX_get_iv(const EVP_CIPHER_CTX *ctx,
500 unsigned char *iv, size_t len);
501int EVP_CIPHER_CTX_set_iv(EVP_CIPHER_CTX *ctx,
502 const unsigned char *iv, size_t len);
499int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out, const EVP_CIPHER_CTX *in); 503int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out, const EVP_CIPHER_CTX *in);
500void * EVP_CIPHER_CTX_get_app_data(const EVP_CIPHER_CTX *ctx); 504void * EVP_CIPHER_CTX_get_app_data(const EVP_CIPHER_CTX *ctx);
501void EVP_CIPHER_CTX_set_app_data(EVP_CIPHER_CTX *ctx, void *data); 505void EVP_CIPHER_CTX_set_app_data(EVP_CIPHER_CTX *ctx, void *data);