summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/evp_lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/evp/evp_lib.c')
-rw-r--r--src/lib/libcrypto/evp/evp_lib.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/lib/libcrypto/evp/evp_lib.c b/src/lib/libcrypto/evp/evp_lib.c
index 55573b21db..622d40dbdf 100644
--- a/src/lib/libcrypto/evp/evp_lib.c
+++ b/src/lib/libcrypto/evp/evp_lib.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: evp_lib.c,v 1.29 2023/11/18 09:37:15 tb Exp $ */ 1/* $OpenBSD: evp_lib.c,v 1.30 2023/12/15 13:28:30 tb 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 *
@@ -197,13 +197,6 @@ EVP_CIPHER_CTX_block_size(const EVP_CIPHER_CTX *ctx)
197 return ctx->cipher->block_size; 197 return ctx->cipher->block_size;
198} 198}
199 199
200int
201EVP_Cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in,
202 unsigned int inl)
203{
204 return ctx->cipher->do_cipher(ctx, out, in, inl);
205}
206
207const EVP_CIPHER * 200const EVP_CIPHER *
208EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx) 201EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx)
209{ 202{