diff options
author | beck <> | 2023-07-08 08:26:26 +0000 |
---|---|---|
committer | beck <> | 2023-07-08 08:26:26 +0000 |
commit | 8035a603830bfb31d58529c3c42a85a6999ff6cb (patch) | |
tree | fcfb051a056f2d002add550f13e8e12390dedcd6 /src/lib/libcrypto/cms/cms_pwri.c | |
parent | df461b97942223971be70a60b9fd46902754373f (diff) | |
download | openbsd-8035a603830bfb31d58529c3c42a85a6999ff6cb.tar.gz openbsd-8035a603830bfb31d58529c3c42a85a6999ff6cb.tar.bz2 openbsd-8035a603830bfb31d58529c3c42a85a6999ff6cb.zip |
Hide symbols in cms, comp, conf, and buffer
ok jsing@
Diffstat (limited to 'src/lib/libcrypto/cms/cms_pwri.c')
-rw-r--r-- | src/lib/libcrypto/cms/cms_pwri.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/cms/cms_pwri.c b/src/lib/libcrypto/cms/cms_pwri.c index 3348b60fdc..9ea7cfdcb0 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.28 2022/11/26 16:08:51 tb Exp $ */ | 1 | /* $OpenBSD: cms_pwri.c,v 1.29 2023/07/08 08:26:26 beck 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. |
@@ -84,6 +84,7 @@ CMS_RecipientInfo_set0_password(CMS_RecipientInfo *ri, unsigned char *pass, | |||
84 | 84 | ||
85 | return 1; | 85 | return 1; |
86 | } | 86 | } |
87 | LCRYPTO_ALIAS(CMS_RecipientInfo_set0_password); | ||
87 | 88 | ||
88 | CMS_RecipientInfo * | 89 | CMS_RecipientInfo * |
89 | CMS_add0_recipient_password(CMS_ContentInfo *cms, int iter, int wrap_nid, | 90 | CMS_add0_recipient_password(CMS_ContentInfo *cms, int iter, int wrap_nid, |
@@ -213,6 +214,7 @@ CMS_add0_recipient_password(CMS_ContentInfo *cms, int iter, int wrap_nid, | |||
213 | 214 | ||
214 | return NULL; | 215 | return NULL; |
215 | } | 216 | } |
217 | LCRYPTO_ALIAS(CMS_add0_recipient_password); | ||
216 | 218 | ||
217 | /* | 219 | /* |
218 | * This is an implementation of the key wrapping mechanism in RFC3211, at | 220 | * This is an implementation of the key wrapping mechanism in RFC3211, at |