diff options
author | tb <> | 2023-07-28 09:31:21 +0000 |
---|---|---|
committer | tb <> | 2023-07-28 09:31:21 +0000 |
commit | 86a42c7a4efeefbbee301583a417e1b99bbda38d (patch) | |
tree | 06ec5af5330e3f4bb25aee942bd1b5143273ca36 /src/lib/libcrypto | |
parent | 3a8fc985d98583b96821febed38c55c12c23ab01 (diff) | |
download | openbsd-86a42c7a4efeefbbee301583a417e1b99bbda38d.tar.gz openbsd-86a42c7a4efeefbbee301583a417e1b99bbda38d.tar.bz2 openbsd-86a42c7a4efeefbbee301583a417e1b99bbda38d.zip |
Remove some unneeded includes from ecdh.c
Diffstat (limited to 'src/lib/libcrypto')
-rw-r--r-- | src/lib/libcrypto/ecdh/ecdh.c | 5 |
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 | ||