From f3249255ef9aeb6c7bbcaebe03b694d9bb46c8cf Mon Sep 17 00:00:00 2001 From: tb Date: Sat, 17 Dec 2022 23:41:29 +0000 Subject: [PATCH] Switch to using BN_zero() instead of BN_zero_ex() --- regress/lib/libcrypto/bn/bn_mod_exp2_mont.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"); -- 2.20.1