summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"