- 340744F79D1466A916FCA829C66F86915B808800BF3EBE2CCADABA1D5FD89EF5C5DB486C94B0F01ACE52F13D7A74784B68214499F5AC120AC8449FC9EB5C61C3
+ 95CD771C444012E1F8E329FC4A7687D1A0F5E3B2D0635C07D7C47913AF09D55040478FEF672766F5CCBF2FBBFF74FEA0B95F57D37BC4A3D0DCF3FD8C7F3288AB
mpi/mpih-mul2.c
(1 . 33)(1 . 29)
4700 /* mpihelp-mul_2.c - MPI helper functions
4701 * Copyright (C) 1994, 1996, 1997, 1998, 2001 Free Software Foundation, Inc.
4702 * Modified by No Such Labs. (C) 2015. See README.
4703 *
4704 * This file is part of GnuPG.
4705 * This file was originally part of Gnu Privacy Guard (GPG), ver. 1.4.10,
4706 * SHA256(gnupg-1.4.10.tar.gz):
4707 * 0bfd74660a2f6cedcf7d8256db4a63c996ffebbcdc2cf54397bfb72878c5a85a
4708 * (C) 1994-2005 Free Software Foundation, Inc.
4709 *
4710 * GnuPG is free software; you can redistribute it and/or modify
4711 * This program is free software: you can redistribute it and/or modify
4712 * it under the terms of the GNU General Public License as published by
4713 * the Free Software Foundation; either version 3 of the License, or
4714 * the Free Software Foundation, either version 3 of the License, or
4715 * (at your option) any later version.
4716 *
4717 * GnuPG is distributed in the hope that it will be useful,
4718 * This program is distributed in the hope that it will be useful,
4719 * but WITHOUT ANY WARRANTY; without even the implied warranty of
4720 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4721 * GNU General Public License for more details.
4722 *
4723 * You should have received a copy of the GNU General Public License
4724 * along with this program; if not, see <http://www.gnu.org/licenses/>.
4725 *
4726 * Note: This code is heavily based on the GNU MP Library.
4727 * Actually it's the same code with only minor changes in the
4728 * way the data is stored; this is to support the abstraction
4729 * of an optional secure memory allocation which may be used
4730 * to avoid revealing of sensitive data due to paging etc.
4731 * The GNU MP Library itself is published under the LGPL;
4732 * however I decided to publish this code under the plain GPL.
4733 * along with this program. If not, see <http://www.gnu.org/licenses/>.
4734 */
4735
4736 #include <config.h>
4737 #include <stdio.h>
4738 #include <stdlib.h>
4739
4740 #include "knobs.h"
4741 #include "mpi-internal.h"
4742 #include "longlong.h"
4743