From: tb Date: Sat, 17 Dec 2022 23:41:29 +0000 (+0000) Subject: Switch to using BN_zero() instead of BN_zero_ex() X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=f3249255ef9aeb6c7bbcaebe03b694d9bb46c8cf;p=openbsd Switch to using BN_zero() instead of BN_zero_ex() --- diff --git a/regress/lib/libcrypto/bn/bn_mod_exp2_mont.c b/regress/lib/libcrypto/bn/bn_mod_exp2_mont.c index 0fa2b960df6..aa1cd0e0cc0 100644 --- a/regress/lib/libcrypto/bn/bn_mod_exp2_mont.c +++ b/regress/lib/libcrypto/bn/bn_mod_exp2_mont.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_mod_exp2_mont.c,v 1.1 2022/12/01 20:50:10 tb Exp $ */ +/* $OpenBSD: bn_mod_exp2_mont.c,v 1.2 2022/12/17 23:41:29 tb Exp $ */ /* * Copyright (c) 2022 Theo Buehler * @@ -32,7 +32,7 @@ main(void) if ((m = BN_new()) == NULL) errx(1, "BN_new"); - BN_zero_ex(m); + BN_zero(m); if (BN_mod_exp2_mont(NULL, NULL, NULL, NULL, NULL, m, NULL, NULL)) errx(1, "BN_mod_exp2_mont succeeded");