diff options
Diffstat (limited to 'src/lib/libcrypto/cms/cms_ess.c')
-rw-r--r-- | src/lib/libcrypto/cms/cms_ess.c | 6 |
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 | } |
121 | LCRYPTO_ALIAS(CMS_get1_ReceiptRequest); | ||
121 | 122 | ||
122 | CMS_ReceiptRequest * | 123 | CMS_ReceiptRequest * |
123 | CMS_ReceiptRequest_create0(unsigned char *id, int idlen, int allorfirst, | 124 | CMS_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 | } |
159 | LCRYPTO_ALIAS(CMS_ReceiptRequest_create0); | ||
158 | 160 | ||
159 | int | 161 | int |
160 | CMS_add1_ReceiptRequest(CMS_SignerInfo *si, CMS_ReceiptRequest *rr) | 162 | CMS_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 | } |
185 | LCRYPTO_ALIAS(CMS_add1_ReceiptRequest); | ||
183 | 186 | ||
184 | void | 187 | void |
185 | CMS_ReceiptRequest_get0_values(CMS_ReceiptRequest *rr, ASN1_STRING **pcid, | 188 | CMS_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 | } |
208 | LCRYPTO_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 | ||