summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authortb <>2024-08-27 01:19:27 +0000
committertb <>2024-08-27 01:19:27 +0000
commit0769c03c9ac155717446eb09c6440b513c1af085 (patch)
tree08547ffdd1abda7bd77113147198ed90d4536326 /src/lib
parentecaaddb84944c0b5282670c1e6dfd04f3cf35c10 (diff)
downloadopenbsd-0769c03c9ac155717446eb09c6440b513c1af085.tar.gz
openbsd-0769c03c9ac155717446eb09c6440b513c1af085.tar.bz2
openbsd-0769c03c9ac155717446eb09c6440b513c1af085.zip
cms_att.c: tidy includes and add x509_local.h for upcoming change
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/cms/cms_att.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libcrypto/cms/cms_att.c b/src/lib/libcrypto/cms/cms_att.c
index 390ad6e74b..5dbaf3cb20 100644
--- a/src/lib/libcrypto/cms/cms_att.c
+++ b/src/lib/libcrypto/cms/cms_att.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: cms_att.c,v 1.12 2024/07/26 13:23:52 tb Exp $ */ 1/* $OpenBSD: cms_att.c,v 1.13 2024/08/27 01:19:27 tb Exp $ */
2/* 2/*
3 * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 3 * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
4 * project. 4 * project.
@@ -52,12 +52,12 @@
52 * ==================================================================== 52 * ====================================================================
53 */ 53 */
54 54
55#include <openssl/asn1t.h> 55#include <openssl/asn1.h>
56#include <openssl/pem.h>
57#include <openssl/x509v3.h>
58#include <openssl/err.h>
59#include <openssl/cms.h> 56#include <openssl/cms.h>
57#include <openssl/x509.h>
58
60#include "cms_local.h" 59#include "cms_local.h"
60#include "x509_local.h"
61 61
62/* CMS SignedData Attribute utilities */ 62/* CMS SignedData Attribute utilities */
63 63