- 86B925ACDAEDFAAF9C7F7FF783DA4A049C62C8F63929BF288FDC8E4760DC9B451440ED5ED5F8549E8B2CCBD4F00175F068DE9DC337EEDFD8FAD8348D21F3ED13
+ E8D6C90380880315A6BF877BA13B073A93159645C447B67723CC6B76ECE8499C13758759085900049695BE381076A06880C6B1721EBAE6E36263ECCBC56260C5
mpi/mpih-mul1.c
(1 . 33)(1 . 29)
4652 /* mpihelp-mul_1.c - MPI helper functions
4653 * Copyright (C) 1994, 1996, 1997, 1998, 2001 Free Software Foundation, Inc.
4654 * Modified by No Such Labs. (C) 2015. See README.
4655 *
4656 * This file is part of GnuPG.
4657 * This file was originally part of Gnu Privacy Guard (GPG), ver. 1.4.10,
4658 * SHA256(gnupg-1.4.10.tar.gz):
4659 * 0bfd74660a2f6cedcf7d8256db4a63c996ffebbcdc2cf54397bfb72878c5a85a
4660 * (C) 1994-2005 Free Software Foundation, Inc.
4661 *
4662 * GnuPG is free software; you can redistribute it and/or modify
4663 * This program is free software: you can redistribute it and/or modify
4664 * it under the terms of the GNU General Public License as published by
4665 * the Free Software Foundation; either version 3 of the License, or
4666 * the Free Software Foundation, either version 3 of the License, or
4667 * (at your option) any later version.
4668 *
4669 * GnuPG is distributed in the hope that it will be useful,
4670 * This program is distributed in the hope that it will be useful,
4671 * but WITHOUT ANY WARRANTY; without even the implied warranty of
4672 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4673 * GNU General Public License for more details.
4674 *
4675 * You should have received a copy of the GNU General Public License
4676 * along with this program; if not, see <http://www.gnu.org/licenses/>.
4677 *
4678 * Note: This code is heavily based on the GNU MP Library.
4679 * Actually it's the same code with only minor changes in the
4680 * way the data is stored; this is to support the abstraction
4681 * of an optional secure memory allocation which may be used
4682 * to avoid revealing of sensitive data due to paging etc.
4683 * The GNU MP Library itself is published under the LGPL;
4684 * however I decided to publish this code under the plain GPL.
4685 * along with this program. If not, see <http://www.gnu.org/licenses/>.
4686 */
4687
4688 #include <config.h>
4689 #include <stdio.h>
4690 #include <stdlib.h>
4691
4692 #include "knobs.h"
4693 #include "mpi-internal.h"
4694 #include "longlong.h"
4695