diff options
author | beck <> | 2023-07-08 15:29:04 +0000 |
---|---|---|
committer | beck <> | 2023-07-08 15:29:04 +0000 |
commit | fb3005d44347523e79c18cf8f224d6044f34af04 (patch) | |
tree | 858373c845c6ed391d9bfd53f8c02d9ae33c3430 /src/lib/libcrypto/dh/dh_check.c | |
parent | 11219faca0a481767f00bb6d2d523c4c847b6299 (diff) | |
download | openbsd-fb3005d44347523e79c18cf8f224d6044f34af04.tar.gz openbsd-fb3005d44347523e79c18cf8f224d6044f34af04.tar.bz2 openbsd-fb3005d44347523e79c18cf8f224d6044f34af04.zip |
Hide symbols in dh
ok tb@
Diffstat (limited to 'src/lib/libcrypto/dh/dh_check.c')
-rw-r--r-- | src/lib/libcrypto/dh/dh_check.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/dh/dh_check.c b/src/lib/libcrypto/dh/dh_check.c index 9bbbd55b30..f3d89f620a 100644 --- a/src/lib/libcrypto/dh/dh_check.c +++ b/src/lib/libcrypto/dh/dh_check.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: dh_check.c,v 1.26 2022/11/26 16:08:51 tb Exp $ */ | 1 | /* $OpenBSD: dh_check.c,v 1.27 2023/07/08 15:29:03 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 | * |
@@ -227,6 +227,7 @@ DH_check(const DH *dh, int *flags) | |||
227 | BN_CTX_free(ctx); | 227 | BN_CTX_free(ctx); |
228 | return ok; | 228 | return ok; |
229 | } | 229 | } |
230 | LCRYPTO_ALIAS(DH_check); | ||
230 | 231 | ||
231 | int | 232 | int |
232 | DH_check_pub_key_ex(const DH *dh, const BIGNUM *pub_key) | 233 | DH_check_pub_key_ex(const DH *dh, const BIGNUM *pub_key) |
@@ -299,3 +300,4 @@ DH_check_pub_key(const DH *dh, const BIGNUM *pub_key, int *flags) | |||
299 | 300 | ||
300 | return ok; | 301 | return ok; |
301 | } | 302 | } |
303 | LCRYPTO_ALIAS(DH_check_pub_key); | ||