summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/dh/dh_local.h
diff options
context:
space:
mode:
authortb <>2023-11-29 21:35:57 +0000
committertb <>2023-11-29 21:35:57 +0000
commitfc4faac9b396d551d0f7729a4dffa6ee31ac2d3e (patch)
tree545e6a340462469cf3c04b8bfe5d2a0f9f885ddb /src/lib/libcrypto/dh/dh_local.h
parent0423d363b45d6891ba1e59c1ae770ef1443bf41c (diff)
downloadopenbsd-fc4faac9b396d551d0f7729a4dffa6ee31ac2d3e.tar.gz
openbsd-fc4faac9b396d551d0f7729a4dffa6ee31ac2d3e.tar.bz2
openbsd-fc4faac9b396d551d0f7729a4dffa6ee31ac2d3e.zip
Ignore ENGINE at the API boundary
This removes the remaining ENGINE members from various internal structs and functions. Any ENGINE passed into a public API is now completely ignored functions returning an ENGINE always return NULL. ok jsing
Diffstat (limited to 'src/lib/libcrypto/dh/dh_local.h')
-rw-r--r--src/lib/libcrypto/dh/dh_local.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libcrypto/dh/dh_local.h b/src/lib/libcrypto/dh/dh_local.h
index 928f2c0c8b..22e2256906 100644
--- a/src/lib/libcrypto/dh/dh_local.h
+++ b/src/lib/libcrypto/dh/dh_local.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: dh_local.h,v 1.3 2022/01/14 08:25:44 tb Exp $ */ 1/* $OpenBSD: dh_local.h,v 1.4 2023/11/29 21:35:57 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 *
@@ -100,7 +100,6 @@ struct dh_st {
100 int references; 100 int references;
101 CRYPTO_EX_DATA ex_data; 101 CRYPTO_EX_DATA ex_data;
102 const DH_METHOD *meth; 102 const DH_METHOD *meth;
103 ENGINE *engine;
104}; 103};
105 104
106/* 105/*