summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/dsa/dsa_prn.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/dsa/dsa_prn.c')
-rw-r--r--src/lib/libcrypto/dsa/dsa_prn.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/dsa/dsa_prn.c b/src/lib/libcrypto/dsa/dsa_prn.c
index 4ed656a04a..f276d82482 100644
--- a/src/lib/libcrypto/dsa/dsa_prn.c
+++ b/src/lib/libcrypto/dsa/dsa_prn.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: dsa_prn.c,v 1.9 2022/11/19 06:33:00 tb Exp $ */ 1/* $OpenBSD: dsa_prn.c,v 1.10 2023/07/08 14:28:15 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 @@ DSA_print_fp(FILE *fp, const DSA *x, int off)
77 BIO_free(b); 77 BIO_free(b);
78 return ret; 78 return ret;
79} 79}
80LCRYPTO_ALIAS(DSA_print_fp);
80 81
81int 82int
82DSAparams_print_fp(FILE *fp, const DSA *x) 83DSAparams_print_fp(FILE *fp, const DSA *x)
@@ -93,6 +94,7 @@ DSAparams_print_fp(FILE *fp, const DSA *x)
93 BIO_free(b); 94 BIO_free(b);
94 return ret; 95 return ret;
95} 96}
97LCRYPTO_ALIAS(DSAparams_print_fp);
96 98
97int 99int
98DSA_print(BIO *bp, const DSA *x, int off) 100DSA_print(BIO *bp, const DSA *x, int off)
@@ -111,6 +113,7 @@ DSA_print(BIO *bp, const DSA *x, int off)
111 EVP_PKEY_free(pk); 113 EVP_PKEY_free(pk);
112 return ret; 114 return ret;
113} 115}
116LCRYPTO_ALIAS(DSA_print);
114 117
115int 118int
116DSAparams_print(BIO *bp, const DSA *x) 119DSAparams_print(BIO *bp, const DSA *x)
@@ -129,3 +132,4 @@ DSAparams_print(BIO *bp, const DSA *x)
129 EVP_PKEY_free(pk); 132 EVP_PKEY_free(pk);
130 return ret; 133 return ret;
131} 134}
135LCRYPTO_ALIAS(DSAparams_print);