summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authortb <>2023-07-05 12:54:46 +0000
committertb <>2023-07-05 12:54:46 +0000
commit7b5ba5f37410e5ecfcea5e5c460215bb3d19362f (patch)
tree193f03ebc5ef2446b1fa9860c904d00a6824b865 /src/lib
parenta4e984acfb9c4e066f99dec0855d060a6447a36a (diff)
downloadopenbsd-7b5ba5f37410e5ecfcea5e5c460215bb3d19362f.tar.gz
openbsd-7b5ba5f37410e5ecfcea5e5c460215bb3d19362f.tar.bz2
openbsd-7b5ba5f37410e5ecfcea5e5c460215bb3d19362f.zip
Fix #includes
Diffstat (limited to 'src/lib')
-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"