- 8A56ADB14BCAC8D72E4454562A0455C241756EDE576D2CD4E8A42CFDFF5ABE7C803A5F1523945EE81D5A149B88D969739443D00165FDAAB7041BAC9BE10DC8CF
+ E59E2D292E0E80C84BBC7526FFB1D48CF9CE718840C0B6D6FF26E1BEE1A331E7EAA4F7002050D195AF9D7E915CE49CA6B4B9A43F7D4C0D74E9C6040B6B871BF6
mpi/mpi-mul.c
(1 . 34)(1 . 29)
5083 /* mpi-mul.c - MPI functions
5084 * Copyright (C) 1994, 1996 Free Software Foundation, Inc.
5085 * Copyright (C) 1998, 2001 Free Software Foundation, Inc.
5086 * Modified by No Such Labs. (C) 2015. See README.
5087 *
5088 * This file is part of GnuPG.
5089 * This file was originally part of Gnu Privacy Guard (GPG), ver. 1.4.10,
5090 * SHA256(gnupg-1.4.10.tar.gz):
5091 * 0bfd74660a2f6cedcf7d8256db4a63c996ffebbcdc2cf54397bfb72878c5a85a
5092 * (C) 1994-2005 Free Software Foundation, Inc.
5093 *
5094 * GnuPG is free software; you can redistribute it and/or modify
5095 * This program is free software: you can redistribute it and/or modify
5096 * it under the terms of the GNU General Public License as published by
5097 * the Free Software Foundation; either version 3 of the License, or
5098 * the Free Software Foundation, either version 3 of the License, or
5099 * (at your option) any later version.
5100 *
5101 * GnuPG is distributed in the hope that it will be useful,
5102 * This program is distributed in the hope that it will be useful,
5103 * but WITHOUT ANY WARRANTY; without even the implied warranty of
5104 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
5105 * GNU General Public License for more details.
5106 *
5107 * You should have received a copy of the GNU General Public License
5108 * along with this program; if not, see <http://www.gnu.org/licenses/>.
5109 *
5110 * Note: This code is heavily based on the GNU MP Library.
5111 * Actually it's the same code with only minor changes in the
5112 * way the data is stored; this is to support the abstraction
5113 * of an optional secure memory allocation which may be used
5114 * to avoid revealing of sensitive data due to paging etc.
5115 * The GNU MP Library itself is published under the LGPL;
5116 * however I decided to publish this code under the plain GPL.
5117 * along with this program. If not, see <http://www.gnu.org/licenses/>.
5118 */
5119
5120 #include <config.h>
5121 #include <stdio.h>
5122 #include <stdlib.h>
5123
5124 #include "knobs.h"
5125 #include "mpi-internal.h"
5126
5127