summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/evp_local.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/evp/evp_local.h')
-rw-r--r--src/lib/libcrypto/evp/evp_local.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/lib/libcrypto/evp/evp_local.h b/src/lib/libcrypto/evp/evp_local.h
index 015fbb50a9..5df1733cbc 100644
--- a/src/lib/libcrypto/evp/evp_local.h
+++ b/src/lib/libcrypto/evp/evp_local.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: evp_local.h,v 1.5 2023/09/28 11:29:10 tb Exp $ */ 1/* $OpenBSD: evp_local.h,v 1.6 2023/11/29 21:35:57 tb Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 2000. 3 * project 2000.
4 */ 4 */
@@ -97,7 +97,6 @@ struct evp_pkey_st {
97 int save_type; 97 int save_type;
98 int references; 98 int references;
99 const EVP_PKEY_ASN1_METHOD *ameth; 99 const EVP_PKEY_ASN1_METHOD *ameth;
100 ENGINE *engine;
101 union { 100 union {
102 void *ptr; 101 void *ptr;
103#ifndef OPENSSL_NO_RSA 102#ifndef OPENSSL_NO_RSA
@@ -140,7 +139,6 @@ struct evp_md_st {
140 139
141struct evp_md_ctx_st { 140struct evp_md_ctx_st {
142 const EVP_MD *digest; 141 const EVP_MD *digest;
143 ENGINE *engine; /* functional reference if 'digest' is ENGINE-provided */
144 unsigned long flags; 142 unsigned long flags;
145 void *md_data; 143 void *md_data;
146 /* Public key context for sign/verify */ 144 /* Public key context for sign/verify */
@@ -169,7 +167,6 @@ struct evp_cipher_st {
169 167
170struct evp_cipher_ctx_st { 168struct evp_cipher_ctx_st {
171 const EVP_CIPHER *cipher; 169 const EVP_CIPHER *cipher;
172 ENGINE *engine; /* functional reference if 'cipher' is ENGINE-provided */
173 int encrypt; /* encrypt or decrypt */ 170 int encrypt; /* encrypt or decrypt */
174 int buf_len; /* number we have left */ 171 int buf_len; /* number we have left */
175 172
@@ -205,8 +202,6 @@ struct evp_Encode_Ctx_st {
205struct evp_pkey_ctx_st { 202struct evp_pkey_ctx_st {
206 /* Method associated with this operation */ 203 /* Method associated with this operation */
207 const EVP_PKEY_METHOD *pmeth; 204 const EVP_PKEY_METHOD *pmeth;
208 /* Engine that implements this method or NULL if builtin */
209 ENGINE *engine;
210 /* Key: may be NULL */ 205 /* Key: may be NULL */
211 EVP_PKEY *pkey; 206 EVP_PKEY *pkey;
212 /* Peer key for key agreement, may be NULL */ 207 /* Peer key for key agreement, may be NULL */