From 8c4425cd5305bde35f340df47af5b26a457623d3 Mon Sep 17 00:00:00 2001 From: Theo Buehler Date: Sun, 18 Dec 2022 00:47:33 +0100 Subject: Patch in use of BN_zero() until next sync --- patches/bn_mod_exp2_mont.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 patches/bn_mod_exp2_mont.patch diff --git a/patches/bn_mod_exp2_mont.patch b/patches/bn_mod_exp2_mont.patch new file mode 100644 index 0000000..6d54710 --- /dev/null +++ b/patches/bn_mod_exp2_mont.patch @@ -0,0 +1,11 @@ +--- tests/bn_mod_exp2_mont.c.orig Sun Dec 18 00:42:18 2022 ++++ tests/bn_mod_exp2_mont.c Sun Dec 18 00:42:25 2022 +@@ -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"); -- cgit v1.2.3-55-g6feb