- FFCEA4F2389EB4919DF50FC60423606D2835E4BE6A853FA885754CF04C397FE96D4A688ECCD591C60BC687846AE1E230304D3554B3E504E2E53662270342C591
+ 956452037539C9B7F45834858A92E436FB65D7482B6B44D2624E2279E9203B59D992A0D405F778638B5E03ADB9F51A545D5C5B55CC31D59453523FBD75F2BE5B
mpi/mpi-add.c
(1 . 35)(1 . 29)
4041 /* mpi-add.c - MPI functions
4042 * Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
4043 * Copyright (C) 1994, 1996 Free Software Foundation, Inc.
4044 * Modified by No Such Labs. (C) 2015. See README.
4045 *
4046 * This file is part of GnuPG.
4047 * This file was originally part of Gnu Privacy Guard (GPG), ver. 1.4.10,
4048 * SHA256(gnupg-1.4.10.tar.gz):
4049 * 0bfd74660a2f6cedcf7d8256db4a63c996ffebbcdc2cf54397bfb72878c5a85a
4050 * (C) 1994-2005 Free Software Foundation, Inc.
4051 *
4052 * GnuPG is free software; you can redistribute it and/or modify
4053 * This program is free software: you can redistribute it and/or modify
4054 * it under the terms of the GNU General Public License as published by
4055 * the Free Software Foundation; either version 3 of the License, or
4056 * the Free Software Foundation, either version 3 of the License, or
4057 * (at your option) any later version.
4058 *
4059 * GnuPG is distributed in the hope that it will be useful,
4060 * This program is distributed in the hope that it will be useful,
4061 * but WITHOUT ANY WARRANTY; without even the implied warranty of
4062 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4063 * GNU General Public License for more details.
4064 *
4065 * You should have received a copy of the GNU General Public License
4066 * along with this program; if not, see <http://www.gnu.org/licenses/>.
4067 *
4068 * Note: This code is heavily based on the GNU MP Library.
4069 * Actually it's the same code with only minor changes in the
4070 * way the data is stored; this is to support the abstraction
4071 * of an optional secure memory allocation which may be used
4072 * to avoid revealing of sensitive data due to paging etc.
4073 * The GNU MP Library itself is published under the LGPL;
4074 * however I decided to publish this code under the plain GPL.
4075 * along with this program. If not, see <http://www.gnu.org/licenses/>.
4076 */
4077
4078 #include <config.h>
4079 #include <stdio.h>
4080 #include <stdlib.h>
4081
4082 #include "knobs.h"
4083 #include "mpi-internal.h"
4084
4085