summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/rsa/rsa_prn.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/rsa/rsa_prn.c')
-rw-r--r--src/lib/libcrypto/rsa/rsa_prn.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/rsa/rsa_prn.c b/src/lib/libcrypto/rsa/rsa_prn.c
index 12f600d674..1783563661 100644
--- a/src/lib/libcrypto/rsa/rsa_prn.c
+++ b/src/lib/libcrypto/rsa/rsa_prn.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: rsa_prn.c,v 1.9 2022/11/08 19:19:08 tobhe Exp $ */ 1/* $OpenBSD: rsa_prn.c,v 1.10 2023/07/08 12:26:45 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 2006. 3 * project 2006.
4 */ 4 */
@@ -77,6 +77,7 @@ RSA_print_fp(FILE *fp, const RSA *x, int off)
77 BIO_free(b); 77 BIO_free(b);
78 return ret; 78 return ret;
79} 79}
80LCRYPTO_ALIAS(RSA_print_fp);
80 81
81int 82int
82RSA_print(BIO *bp, const RSA *x, int off) 83RSA_print(BIO *bp, const RSA *x, int off)
@@ -95,3 +96,4 @@ RSA_print(BIO *bp, const RSA *x, int off)
95 EVP_PKEY_free(pk); 96 EVP_PKEY_free(pk);
96 return ret; 97 return ret;
97} 98}
99LCRYPTO_ALIAS(RSA_print);