summaryrefslogtreecommitdiff
path: root/lib/libcrypto/asn1/a_strex.c
diff options
context:
space:
mode:
authorBob Beck <beck@cvs.openbsd.org>2023-07-05 21:23:38 +0000
committerBob Beck <beck@cvs.openbsd.org>2023-07-05 21:23:38 +0000
commit1b73cb8d66b0d650b24bddc7b290f65001d573f4 (patch)
treede6725a0bdefe1bdeb7601f950b667c6ea00ee87 /lib/libcrypto/asn1/a_strex.c
parentd9e53e6fdbaa18b51b96622b5d95ffecfe803104 (diff)
Hide symbols in asn1 and bio
ok jsing@
Diffstat (limited to 'lib/libcrypto/asn1/a_strex.c')
-rw-r--r--lib/libcrypto/asn1/a_strex.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libcrypto/asn1/a_strex.c b/lib/libcrypto/asn1/a_strex.c
index 91aa8d26432..c40a13d0135 100644
--- a/lib/libcrypto/asn1/a_strex.c
+++ b/lib/libcrypto/asn1/a_strex.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: a_strex.c,v 1.32 2022/11/26 16:08:50 tb Exp $ */
+/* $OpenBSD: a_strex.c,v 1.33 2023/07/05 21:23:36 beck Exp $ */
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
* project 2000.
*/
@@ -570,6 +570,7 @@ X509_NAME_print_ex(BIO *out, const X509_NAME *nm, int indent,
return X509_NAME_print(out, nm, indent);
return do_name_ex(send_bio_chars, out, nm, indent, flags);
}
+LCRYPTO_ALIAS(X509_NAME_print_ex);
int
X509_NAME_print_ex_fp(FILE *fp, const X509_NAME *nm, int indent,
@@ -587,15 +588,18 @@ X509_NAME_print_ex_fp(FILE *fp, const X509_NAME *nm, int indent,
}
return do_name_ex(send_fp_chars, fp, nm, indent, flags);
}
+LCRYPTO_ALIAS(X509_NAME_print_ex_fp);
int
ASN1_STRING_print_ex(BIO *out, const ASN1_STRING *str, unsigned long flags)
{
return do_print_ex(send_bio_chars, out, flags, str);
}
+LCRYPTO_ALIAS(ASN1_STRING_print_ex);
int
ASN1_STRING_print_ex_fp(FILE *fp, const ASN1_STRING *str, unsigned long flags)
{
return do_print_ex(send_fp_chars, fp, flags, str);
}
+LCRYPTO_ALIAS(ASN1_STRING_print_ex_fp);