summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/libtls/tls_signer.c15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/lib/libtls/tls_signer.c b/src/lib/libtls/tls_signer.c
index d423b3b1c8..2573803ec1 100644
--- a/src/lib/libtls/tls_signer.c
+++ b/src/lib/libtls/tls_signer.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls_signer.c,v 1.12 2024/03/28 06:55:02 joshua Exp $ */ 1/* $OpenBSD: tls_signer.c,v 1.13 2024/06/11 16:35:24 op Exp $ */
2/* 2/*
3 * Copyright (c) 2021 Eric Faurot <eric@openbsd.org> 3 * Copyright (c) 2021 Eric Faurot <eric@openbsd.org>
4 * 4 *
@@ -16,10 +16,19 @@
16 */ 16 */
17 17
18#include <limits.h> 18#include <limits.h>
19 19#include <pthread.h>
20#include <openssl/ecdsa.h> 20#include <stdint.h>
21#include <stdio.h>
22#include <stdlib.h>
23#include <string.h>
24
25#include <openssl/bio.h>
26#include <openssl/ec.h>
21#include <openssl/err.h> 27#include <openssl/err.h>
28#include <openssl/evp.h>
29#include <openssl/pem.h>
22#include <openssl/rsa.h> 30#include <openssl/rsa.h>
31#include <openssl/x509.h>
23 32
24#include "tls.h" 33#include "tls.h"
25#include "tls_internal.h" 34#include "tls_internal.h"