summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/asn1/t_pkey.c
diff options
context:
space:
mode:
authorbeck <>2023-07-05 21:23:37 +0000
committerbeck <>2023-07-05 21:23:37 +0000
commitf02026f6f76299e13e86d72eda1292aed8790474 (patch)
tree3cafd04134ea26f8b5da5e120671d9a01bff9156 /src/lib/libcrypto/asn1/t_pkey.c
parentf84ae72d736cf133007e9416282403a5c00bae5d (diff)
downloadopenbsd-f02026f6f76299e13e86d72eda1292aed8790474.tar.gz
openbsd-f02026f6f76299e13e86d72eda1292aed8790474.tar.bz2
openbsd-f02026f6f76299e13e86d72eda1292aed8790474.zip
Hide symbols in asn1 and bio
ok jsing@
Diffstat (limited to 'src/lib/libcrypto/asn1/t_pkey.c')
-rw-r--r--src/lib/libcrypto/asn1/t_pkey.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/asn1/t_pkey.c b/src/lib/libcrypto/asn1/t_pkey.c
index 0392dc41d7..3257cd08c8 100644
--- a/src/lib/libcrypto/asn1/t_pkey.c
+++ b/src/lib/libcrypto/asn1/t_pkey.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: t_pkey.c,v 1.19 2022/11/26 16:08:50 tb Exp $ */ 1/* $OpenBSD: t_pkey.c,v 1.20 2023/07/05 21:23:36 beck Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -114,6 +114,7 @@ ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num,
114 } 114 }
115 return (1); 115 return (1);
116} 116}
117LCRYPTO_ALIAS(ASN1_bn_print);
117 118
118#define ASN1_BUF_PRINT_WIDTH 15 119#define ASN1_BUF_PRINT_WIDTH 15
119#define ASN1_BUF_PRINT_MAX_INDENT 64 120#define ASN1_BUF_PRINT_MAX_INDENT 64
@@ -143,3 +144,4 @@ ASN1_buf_print(BIO *bp, const unsigned char *buf, size_t buflen, int indent)
143 144
144 return 1; 145 return 1;
145} 146}
147LCRYPTO_ALIAS(ASN1_buf_print);