summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authortb <>2023-07-28 09:31:21 +0000
committertb <>2023-07-28 09:31:21 +0000
commit9c5ea71bae1a127e105ddfec83aabaa35ad748d2 (patch)
tree06ec5af5330e3f4bb25aee942bd1b5143273ca36 /src/lib
parent97443e714beb34ae6ba1376722a8448ac88967a4 (diff)
downloadopenbsd-9c5ea71bae1a127e105ddfec83aabaa35ad748d2.tar.gz
openbsd-9c5ea71bae1a127e105ddfec83aabaa35ad748d2.tar.bz2
openbsd-9c5ea71bae1a127e105ddfec83aabaa35ad748d2.zip
Remove some unneeded includes from ecdh.c
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/ecdh/ecdh.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/libcrypto/ecdh/ecdh.c b/src/lib/libcrypto/ecdh/ecdh.c
index 08183364f9..b0a8e60a2f 100644
--- a/src/lib/libcrypto/ecdh/ecdh.c
+++ b/src/lib/libcrypto/ecdh/ecdh.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ecdh.c,v 1.9 2023/07/28 09:30:22 tb Exp $ */ 1/* $OpenBSD: ecdh.c,v 1.10 2023/07/28 09:31:21 tb Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. 3 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
4 * 4 *
@@ -71,11 +71,8 @@
71#include <stdlib.h> 71#include <stdlib.h>
72#include <string.h> 72#include <string.h>
73 73
74#include <openssl/opensslconf.h>
75
76#include <openssl/bn.h> 74#include <openssl/bn.h>
77#include <openssl/ec.h> 75#include <openssl/ec.h>
78#include <openssl/ecdh.h>
79#include <openssl/err.h> 76#include <openssl/err.h>
80#include <openssl/evp.h> 77#include <openssl/evp.h>
81 78