summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/cms/cms_ess.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/cms/cms_ess.c')
-rw-r--r--src/lib/libcrypto/cms/cms_ess.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/cms/cms_ess.c b/src/lib/libcrypto/cms/cms_ess.c
index 16b54c1992..cced998545 100644
--- a/src/lib/libcrypto/cms/cms_ess.c
+++ b/src/lib/libcrypto/cms/cms_ess.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: cms_ess.c,v 1.24 2024/01/14 18:40:24 tb Exp $ */ 1/* $OpenBSD: cms_ess.c,v 1.25 2024/03/30 01:53:05 joshua 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.
@@ -118,6 +118,7 @@ CMS_get1_ReceiptRequest(CMS_SignerInfo *si, CMS_ReceiptRequest **prr)
118 118
119 return 1; 119 return 1;
120} 120}
121LCRYPTO_ALIAS(CMS_get1_ReceiptRequest);
121 122
122CMS_ReceiptRequest * 123CMS_ReceiptRequest *
123CMS_ReceiptRequest_create0(unsigned char *id, int idlen, int allorfirst, 124CMS_ReceiptRequest_create0(unsigned char *id, int idlen, int allorfirst,
@@ -155,6 +156,7 @@ CMS_ReceiptRequest_create0(unsigned char *id, int idlen, int allorfirst,
155 156
156 return NULL; 157 return NULL;
157} 158}
159LCRYPTO_ALIAS(CMS_ReceiptRequest_create0);
158 160
159int 161int
160CMS_add1_ReceiptRequest(CMS_SignerInfo *si, CMS_ReceiptRequest *rr) 162CMS_add1_ReceiptRequest(CMS_SignerInfo *si, CMS_ReceiptRequest *rr)
@@ -180,6 +182,7 @@ CMS_add1_ReceiptRequest(CMS_SignerInfo *si, CMS_ReceiptRequest *rr)
180 182
181 return r; 183 return r;
182} 184}
185LCRYPTO_ALIAS(CMS_add1_ReceiptRequest);
183 186
184void 187void
185CMS_ReceiptRequest_get0_values(CMS_ReceiptRequest *rr, ASN1_STRING **pcid, 188CMS_ReceiptRequest_get0_values(CMS_ReceiptRequest *rr, ASN1_STRING **pcid,
@@ -202,6 +205,7 @@ CMS_ReceiptRequest_get0_values(CMS_ReceiptRequest *rr, ASN1_STRING **pcid,
202 if (prto) 205 if (prto)
203 *prto = rr->receiptsTo; 206 *prto = rr->receiptsTo;
204} 207}
208LCRYPTO_ALIAS(CMS_ReceiptRequest_get0_values);
205 209
206/* Digest a SignerInfo structure for msgSigDigest attribute processing */ 210/* Digest a SignerInfo structure for msgSigDigest attribute processing */
207 211