diff options
author | beck <> | 2023-07-08 14:28:15 +0000 |
---|---|---|
committer | beck <> | 2023-07-08 14:28:15 +0000 |
commit | b22b791de1d8ce36154a6857c1471a1cb64eb2ec (patch) | |
tree | 43b93595f2484c826f709140a37a783ee1ac35ab /src/lib/libcrypto/dsa/dsa_prn.c | |
parent | d916b9cc17bb2d4b961581db313185bdc3848a55 (diff) | |
download | openbsd-b22b791de1d8ce36154a6857c1471a1cb64eb2ec.tar.gz openbsd-b22b791de1d8ce36154a6857c1471a1cb64eb2ec.tar.bz2 openbsd-b22b791de1d8ce36154a6857c1471a1cb64eb2ec.zip |
hide symbols in dsa
ok tb@
Diffstat (limited to 'src/lib/libcrypto/dsa/dsa_prn.c')
-rw-r--r-- | src/lib/libcrypto/dsa/dsa_prn.c | 6 |
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 | } |
80 | LCRYPTO_ALIAS(DSA_print_fp); | ||
80 | 81 | ||
81 | int | 82 | int |
82 | DSAparams_print_fp(FILE *fp, const DSA *x) | 83 | DSAparams_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 | } |
97 | LCRYPTO_ALIAS(DSAparams_print_fp); | ||
96 | 98 | ||
97 | int | 99 | int |
98 | DSA_print(BIO *bp, const DSA *x, int off) | 100 | DSA_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 | } |
116 | LCRYPTO_ALIAS(DSA_print); | ||
114 | 117 | ||
115 | int | 118 | int |
116 | DSAparams_print(BIO *bp, const DSA *x) | 119 | DSAparams_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 | } |
135 | LCRYPTO_ALIAS(DSAparams_print); | ||