summaryrefslogtreecommitdiffstats
path: root/lib/mpi
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mpi')
-rw-r--r--lib/mpi/mpi-pow.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/mpi/mpi-pow.c b/lib/mpi/mpi-pow.c
index 82b19e4f1189..2fd7a46d55ec 100644
--- a/lib/mpi/mpi-pow.c
+++ b/lib/mpi/mpi-pow.c
@@ -24,6 +24,7 @@
int mpi_powm(MPI res, MPI base, MPI exp, MPI mod)
{
mpi_ptr_t mp_marker = NULL, bp_marker = NULL, ep_marker = NULL;
+ struct karatsuba_ctx karactx = {};
mpi_ptr_t xp_marker = NULL;
mpi_ptr_t tspace = NULL;
mpi_ptr_t rp, ep, mp, bp;
@@ -150,13 +151,11 @@ int mpi_powm(MPI res, MPI base, MPI exp, MPI mod)
int c;
mpi_limb_t e;
mpi_limb_t carry_limb;
- struct karatsuba_ctx karactx;
xp = xp_marker = mpi_alloc_limb_space(2 * (msize + 1));
if (!xp)
goto enomem;
- memset(&karactx, 0, sizeof karactx);
negative_result = (ep[0] & 1) && base->sign;
i = esize - 1;
@@ -281,8 +280,6 @@ int mpi_powm(MPI res, MPI base, MPI exp, MPI mod)
if (mod_shift_cnt)
mpihelp_rshift(rp, rp, rsize, mod_shift_cnt);
MPN_NORMALIZE(rp, rsize);
-
- mpihelp_release_karatsuba_ctx(&karactx);
}
if (negative_result && rsize) {
@@ -299,6 +296,7 @@ int mpi_powm(MPI res, MPI base, MPI exp, MPI mod)
leave:
rc = 0;
enomem:
+ mpihelp_release_karatsuba_ctx(&karactx);
if (assign_rp)
mpi_assign_limb_space(res, rp, size);
if (mp_marker)
lumn5'>\ Merge branch 'pdf_fixes_v1' of https://git.linuxtv.org/mchehab/experimental i...Jonathan Corbet2019-07-221-7/+7 | |\ \ | | |/ | |/| | | * docs: fix broken doc references due to renamesMauro Carvalho Chehab2019-07-171-4/+4 | | * docs: powerpc: convert docs to ReST and rename to *.rstMauro Carvalho Chehab2019-07-171-3/+3 * | | Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm6...Linus Torvalds2019-07-261-7/+7 |\ \ \ | * | | MAINTAINERS: Update my email addressJean-Philippe Brucker2019-07-221-1/+1 | * | | MAINTAINERS: Update my email addressJulien Thierry2019-07-221-1/+1 | * | | MAINTAINERS: Fix spelling mistake in my nameSuzuki K Poulose2019-07-221-1/+1 | * | | MAINTAINERS: Update my email address to @kernel.orgMarc Zyngier2019-07-221-4/+4 | |/ / * | | Merge tag 'riscv/for-v5.3-rc2' of git://git.kernel.org/pub/scm/linux/kernel/g...Linus Torvalds2019-07-251-0/+1 |\ \ \ | * | | MAINTAINERS: Add Paul as a RISC-V maintainerPalmer Dabbelt2019-07-221-0/+1 * | | | Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmLinus Torvalds2019-07-241-3/+3 |\ \ \ \ | |_|/ / |/| | | | * | | Documentation: move Documentation/virtual to Documentation/virtChristoph Hellwig2019-07-241-3/+3 * | | | Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/ker...Linus Torvalds2019-07-201-2/+4 |\ \ \ \ | * | | | MAINTAINERS: Update PARAVIRT_OPS_INTERFACE and VMWARE_HYPERVISOR_INTERFACEThomas Hellstrom2019-07-171-2/+4 * | | | | Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmLinus Torvalds2019-07-201-0/+2 |\ \ \ \ \ | | |/ / / | |/| | | | * | | | Merge tag 'kvm-s390-next-5.3-1' of git://git.kernel.org/pub/scm/linux/kernel/...Paolo Bonzini2019-07-151-0/+2 | |\ \ \ \ | | * | | | KVM: selftests: Add the sync_regs test for s390xThomas Huth2019-06-041-0/+1 | | * | | | KVM: selftests: Add processor code for s390xThomas Huth2019-06-041-0/+1 * | | | | | Merge tag 'armsoc-drivers' of git://git.kernel.org/pub/scm/linux/kernel/git/s...Linus Torvalds2019-07-201-3/+6 |\ \ \ \ \ \ | * \ \ \ \ \ Merge tag 'qcom-drivers-for-5.3' of git://git.kernel.org/pub/scm/linux/kernel...Olof Johansson2019-06-251-3/+2Star | |\ \ \ \ \ \ | | * | | | | | MAINTAINERS: Remove myself as qcom maintainerDavid Brown2019-06-171-1/+0Star | | * | | | | | MAINTAINER: Fix Qualcomm ETHQOS ethernet DT fileVinod Koul2019-05-30