- 683F47357B0F57E3DC50AEFC32BDCD8C20E7A9A4C3DC48D3BA9E5715E12836B6CE53B8DFF653BDB86CDD197DAAB9AF7532DEF5BB06D861BDF48F4DC705AC6AA4
+ C86699C63F32A4627023A4AD8B89138FCBEF21E066E98E73C8F652B62F521C67110CEB48121EF5F7A586745328E8777B8170699E1417D70FB54849C5DFE88811
mpi/mpih-mul3.c
(1 . 33)(1 . 29)
4748 /* mpihelp-mul_3.c - MPI helper functions
4749 * Copyright (C) 1994, 1996, 1997, 1998, 2001 Free Software Foundation, Inc.
4750 * Modified by No Such Labs. (C) 2015. See README.
4751 *
4752 * This file is part of GnuPG.
4753 * This file was originally part of Gnu Privacy Guard (GPG), ver. 1.4.10,
4754 * SHA256(gnupg-1.4.10.tar.gz):
4755 * 0bfd74660a2f6cedcf7d8256db4a63c996ffebbcdc2cf54397bfb72878c5a85a
4756 * (C) 1994-2005 Free Software Foundation, Inc.
4757 *
4758 * GnuPG is free software; you can redistribute it and/or modify
4759 * This program is free software: you can redistribute it and/or modify
4760 * it under the terms of the GNU General Public License as published by
4761 * the Free Software Foundation; either version 3 of the License, or
4762 * the Free Software Foundation, either version 3 of the License, or
4763 * (at your option) any later version.
4764 *
4765 * GnuPG is distributed in the hope that it will be useful,
4766 * This program is distributed in the hope that it will be useful,
4767 * but WITHOUT ANY WARRANTY; without even the implied warranty of
4768 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4769 * GNU General Public License for more details.
4770 *
4771 * You should have received a copy of the GNU General Public License
4772 * along with this program; if not, see <http://www.gnu.org/licenses/>.
4773 *
4774 * Note: This code is heavily based on the GNU MP Library.
4775 * Actually it's the same code with only minor changes in the
4776 * way the data is stored; this is to support the abstraction
4777 * of an optional secure memory allocation which may be used
4778 * to avoid revealing of sensitive data due to paging etc.
4779 * The GNU MP Library itself is published under the LGPL;
4780 * however I decided to publish this code under the plain GPL.
4781 * along with this program. If not, see <http://www.gnu.org/licenses/>.
4782 */
4783
4784 #include <config.h>
4785 #include <stdio.h>
4786 #include <stdlib.h>
4787
4788 #include "knobs.h"
4789 #include "mpi-internal.h"
4790 #include "longlong.h"
4791