summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2023-07-05 12:54:46 +0000
committertb <>2023-07-05 12:54:46 +0000
commitddca7d602c651d64ac3ae4095b65dc494291b1e5 (patch)
tree193f03ebc5ef2446b1fa9860c904d00a6824b865 /src
parentc13df8b5e0d0a06f65b5b2a84b66156cd71e08d4 (diff)
downloadopenbsd-ddca7d602c651d64ac3ae4095b65dc494291b1e5.tar.gz
openbsd-ddca7d602c651d64ac3ae4095b65dc494291b1e5.tar.bz2
openbsd-ddca7d602c651d64ac3ae4095b65dc494291b1e5.zip
Fix #includes
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/ecdsa/ecdsa.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ecdsa/ecdsa.c b/src/lib/libcrypto/ecdsa/ecdsa.c
index dc92ea9bdd..2da020d0b4 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.4 2023/07/05 12:51:11 tb Exp $ */ 1/* $OpenBSD: ecdsa.c,v 1.5 2023/07/05 12:54:46 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 *
@@ -53,15 +53,19 @@
53 * 53 *
54 */ 54 */
55 55
56#include <stddef.h>
57#include <stdlib.h>
56#include <string.h> 58#include <string.h>
57 59
58#include <openssl/opensslconf.h> 60#include <openssl/opensslconf.h>
59 61
62#include <openssl/asn1.h>
60#include <openssl/asn1t.h> 63#include <openssl/asn1t.h>
61#include <openssl/bn.h> 64#include <openssl/bn.h>
65#include <openssl/ecdsa.h>
66#include <openssl/ec.h>
62#include <openssl/err.h> 67#include <openssl/err.h>
63#include <openssl/evp.h> 68#include <openssl/evp.h>
64#include <openssl/objects.h>
65 69
66#include "bn_local.h" 70#include "bn_local.h"
67#include "ec_local.h" 71#include "ec_local.h"