From 4fff81a3a2e2fb3d68e73e2fcc951cee3548c554 Mon Sep 17 00:00:00 2001 From: beck <> Date: Sat, 8 Jul 2023 12:21:58 +0000 Subject: Hide symbols in bn ok tb@ --- src/lib/libcrypto/bn/bn_add.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/lib/libcrypto/bn/bn_add.c') diff --git a/src/lib/libcrypto/bn/bn_add.c b/src/lib/libcrypto/bn/bn_add.c index 36f160ab5f..86768a312a 100644 --- a/src/lib/libcrypto/bn/bn_add.c +++ b/src/lib/libcrypto/bn/bn_add.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_add.c,v 1.25 2023/06/12 16:17:24 jsing Exp $ */ +/* $OpenBSD: bn_add.c,v 1.26 2023/07/08 12:21:58 beck Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -248,6 +248,7 @@ BN_uadd(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) return 1; } +LCRYPTO_ALIAS(BN_uadd); int BN_usub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) @@ -277,6 +278,7 @@ BN_usub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) return 1; } +LCRYPTO_ALIAS(BN_usub); int BN_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) @@ -306,6 +308,7 @@ BN_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) return ret; } +LCRYPTO_ALIAS(BN_add); int BN_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) @@ -335,3 +338,4 @@ BN_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) return ret; } +LCRYPTO_ALIAS(BN_sub); -- cgit v1.2.3-55-g6feb