diff options
| author | beck <> | 2023-07-05 21:23:37 +0000 |
|---|---|---|
| committer | beck <> | 2023-07-05 21:23:37 +0000 |
| commit | 0da1913b3c721e1a62fd66bc43547b4e910cbc34 (patch) | |
| tree | 3cafd04134ea26f8b5da5e120671d9a01bff9156 /src/lib/libcrypto/asn1/a_strex.c | |
| parent | 78a308af2f74ee5b41c0815ab21ef9d01c1fcdd9 (diff) | |
| download | openbsd-0da1913b3c721e1a62fd66bc43547b4e910cbc34.tar.gz openbsd-0da1913b3c721e1a62fd66bc43547b4e910cbc34.tar.bz2 openbsd-0da1913b3c721e1a62fd66bc43547b4e910cbc34.zip | |
Hide symbols in asn1 and bio
ok jsing@
Diffstat (limited to 'src/lib/libcrypto/asn1/a_strex.c')
| -rw-r--r-- | src/lib/libcrypto/asn1/a_strex.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/asn1/a_strex.c b/src/lib/libcrypto/asn1/a_strex.c index 91aa8d2643..c40a13d013 100644 --- a/src/lib/libcrypto/asn1/a_strex.c +++ b/src/lib/libcrypto/asn1/a_strex.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: a_strex.c,v 1.32 2022/11/26 16:08:50 tb Exp $ */ | 1 | /* $OpenBSD: a_strex.c,v 1.33 2023/07/05 21:23:36 beck Exp $ */ |
| 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
| 3 | * project 2000. | 3 | * project 2000. |
| 4 | */ | 4 | */ |
| @@ -570,6 +570,7 @@ X509_NAME_print_ex(BIO *out, const X509_NAME *nm, int indent, | |||
| 570 | return X509_NAME_print(out, nm, indent); | 570 | return X509_NAME_print(out, nm, indent); |
| 571 | return do_name_ex(send_bio_chars, out, nm, indent, flags); | 571 | return do_name_ex(send_bio_chars, out, nm, indent, flags); |
| 572 | } | 572 | } |
| 573 | LCRYPTO_ALIAS(X509_NAME_print_ex); | ||
| 573 | 574 | ||
| 574 | int | 575 | int |
| 575 | X509_NAME_print_ex_fp(FILE *fp, const X509_NAME *nm, int indent, | 576 | 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, | |||
| 587 | } | 588 | } |
| 588 | return do_name_ex(send_fp_chars, fp, nm, indent, flags); | 589 | return do_name_ex(send_fp_chars, fp, nm, indent, flags); |
| 589 | } | 590 | } |
| 591 | LCRYPTO_ALIAS(X509_NAME_print_ex_fp); | ||
| 590 | 592 | ||
| 591 | int | 593 | int |
| 592 | ASN1_STRING_print_ex(BIO *out, const ASN1_STRING *str, unsigned long flags) | 594 | ASN1_STRING_print_ex(BIO *out, const ASN1_STRING *str, unsigned long flags) |
| 593 | { | 595 | { |
| 594 | return do_print_ex(send_bio_chars, out, flags, str); | 596 | return do_print_ex(send_bio_chars, out, flags, str); |
| 595 | } | 597 | } |
| 598 | LCRYPTO_ALIAS(ASN1_STRING_print_ex); | ||
| 596 | 599 | ||
| 597 | int | 600 | int |
| 598 | ASN1_STRING_print_ex_fp(FILE *fp, const ASN1_STRING *str, unsigned long flags) | 601 | ASN1_STRING_print_ex_fp(FILE *fp, const ASN1_STRING *str, unsigned long flags) |
| 599 | { | 602 | { |
| 600 | return do_print_ex(send_fp_chars, fp, flags, str); | 603 | return do_print_ex(send_fp_chars, fp, flags, str); |
| 601 | } | 604 | } |
| 605 | LCRYPTO_ALIAS(ASN1_STRING_print_ex_fp); | ||
