summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2023-07-28 09:18:10 +0000
committertb <>2023-07-28 09:18:10 +0000
commitf82b526c76ed6b20c6a9efccc58da9c265c1ba89 (patch)
treebfe8105bf2559819d13351d748805d9a34fbde34
parentbf7ee0210d0d1420ed787a79eda0c974f8d15f17 (diff)
downloadopenbsd-f82b526c76ed6b20c6a9efccc58da9c265c1ba89.tar.gz
openbsd-f82b526c76ed6b20c6a9efccc58da9c265c1ba89.tar.bz2
openbsd-f82b526c76ed6b20c6a9efccc58da9c265c1ba89.zip
Remove some unneeded includes from ecdsa.h
-rw-r--r--src/lib/libcrypto/ecdsa/ecdsa.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/libcrypto/ecdsa/ecdsa.c b/src/lib/libcrypto/ecdsa/ecdsa.c
index 38ae415277..1252ab2a43 100644
--- a/src/lib/libcrypto/ecdsa/ecdsa.c
+++ b/src/lib/libcrypto/ecdsa/ecdsa.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ecdsa.c,v 1.15 2023/07/28 08:57:46 tb Exp $ */ 1/* $OpenBSD: ecdsa.c,v 1.16 2023/07/28 09:18:10 tb Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. 3 * Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved.
4 * 4 *
@@ -57,15 +57,11 @@
57#include <stdlib.h> 57#include <stdlib.h>
58#include <string.h> 58#include <string.h>
59 59
60#include <openssl/opensslconf.h>
61
62#include <openssl/asn1.h> 60#include <openssl/asn1.h>
63#include <openssl/asn1t.h> 61#include <openssl/asn1t.h>
64#include <openssl/bn.h> 62#include <openssl/bn.h>
65#include <openssl/ecdsa.h>
66#include <openssl/ec.h> 63#include <openssl/ec.h>
67#include <openssl/err.h> 64#include <openssl/err.h>
68#include <openssl/evp.h>
69 65
70#include "bn_local.h" 66#include "bn_local.h"
71#include "ec_local.h" 67#include "ec_local.h"