summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/cms/cms_pwri.c
diff options
context:
space:
mode:
authorjsing <>2019-08-10 16:39:17 +0000
committerjsing <>2019-08-10 16:39:17 +0000
commitd2294fe6ec6b67e094cc8b699125f5d1027c17e3 (patch)
treedc5392fe60fad67f6fe52c6bd41e202bae1e31c9 /src/lib/libcrypto/cms/cms_pwri.c
parentb01b00fb95cf0b3b49b443caa121fd70172439cf (diff)
downloadopenbsd-d2294fe6ec6b67e094cc8b699125f5d1027c17e3.tar.gz
openbsd-d2294fe6ec6b67e094cc8b699125f5d1027c17e3.tar.bz2
openbsd-d2294fe6ec6b67e094cc8b699125f5d1027c17e3.zip
Fix includes for non-installed headers.
Diffstat (limited to 'src/lib/libcrypto/cms/cms_pwri.c')
-rw-r--r--src/lib/libcrypto/cms/cms_pwri.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/cms/cms_pwri.c b/src/lib/libcrypto/cms/cms_pwri.c
index acddf51c40..a8030471e6 100644
--- a/src/lib/libcrypto/cms/cms_pwri.c
+++ b/src/lib/libcrypto/cms/cms_pwri.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: cms_pwri.c,v 1.14 2019/08/10 16:03:54 jsing Exp $ */ 1/* $OpenBSD: cms_pwri.c,v 1.15 2019/08/10 16:39:17 jsing 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,7 +52,7 @@
52 * ==================================================================== 52 * ====================================================================
53 */ 53 */
54 54
55#include "internal/cryptlib.h" 55#include "cryptlib.h"
56#include <openssl/asn1t.h> 56#include <openssl/asn1t.h>
57#include <openssl/pem.h> 57#include <openssl/pem.h>
58#include <openssl/x509v3.h> 58#include <openssl/x509v3.h>
@@ -61,7 +61,7 @@
61#include <openssl/rand.h> 61#include <openssl/rand.h>
62#include <openssl/aes.h> 62#include <openssl/aes.h>
63#include "cms_lcl.h" 63#include "cms_lcl.h"
64#include "internal/asn1_int.h" 64#include "asn1/asn1_locl.h"
65 65
66int CMS_RecipientInfo_set0_password(CMS_RecipientInfo *ri, 66int CMS_RecipientInfo_set0_password(CMS_RecipientInfo *ri,
67 unsigned char *pass, ossl_ssize_t passlen) 67 unsigned char *pass, ossl_ssize_t passlen)