summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2025-07-12 19:50:02 +0000
committertb <>2025-07-12 19:50:02 +0000
commit49f5e7daaec3894208ab7e6b68ff13afb2b7c63c (patch)
treebf5f58c3aa24cd7ad6613ce7184f650097fb5ad0
parent1ae14c20fb6b1054bcd3a218b1b15ea50fcbfb59 (diff)
downloadopenbsd-49f5e7daaec3894208ab7e6b68ff13afb2b7c63c.tar.gz
openbsd-49f5e7daaec3894208ab7e6b68ff13afb2b7c63c.tar.bz2
openbsd-49f5e7daaec3894208ab7e6b68ff13afb2b7c63c.zip
pem_info.c: fix includes
-rw-r--r--src/lib/libcrypto/pem/pem_info.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/lib/libcrypto/pem/pem_info.c b/src/lib/libcrypto/pem/pem_info.c
index dfc0a83d3f..a28baae21e 100644
--- a/src/lib/libcrypto/pem/pem_info.c
+++ b/src/lib/libcrypto/pem/pem_info.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: pem_info.c,v 1.28 2025/05/10 05:54:38 tb Exp $ */ 1/* $OpenBSD: pem_info.c,v 1.29 2025/07/12 19:50:02 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -57,11 +57,15 @@
57 */ 57 */
58 58
59#include <stdio.h> 59#include <stdio.h>
60#include <stdlib.h>
60#include <string.h> 61#include <string.h>
61 62
62#include <openssl/opensslconf.h> 63#include <openssl/opensslconf.h>
63 64
64#include <openssl/buffer.h> 65#include <openssl/asn1.h>
66#include <openssl/bio.h>
67#include <openssl/ec.h>
68#include <openssl/err.h>
65#include <openssl/evp.h> 69#include <openssl/evp.h>
66#include <openssl/objects.h> 70#include <openssl/objects.h>
67#include <openssl/pem.h> 71#include <openssl/pem.h>