- B320709B57B3CF0C00BC98277B037494C62FED93FD99BCA0412EA633F8662844D35ED62990CBE1FC02A47DEE5795D3A7B6B401440F6E80A8A00243868815C06A
+ C35F9C1DD65BD4564AC028B876D7351CD30F72780AFD03FD6A764B0FCCFE57C10AE496D64407F04953364788FA2824759239CC598A44466537A379E57E0BAD8C
mpi/mpi-div.c
(1 . 34)(1 . 29)
4368 /* mpi-div.c - MPI functions
4369 * Copyright (C) 1994, 1996 Free Software Foundation, Inc.
4370 * Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
4371 * Modified by No Such Labs. (C) 2015. See README.
4372 *
4373 * This file is part of GnuPG.
4374 * This file was originally part of Gnu Privacy Guard (GPG), ver. 1.4.10,
4375 * SHA256(gnupg-1.4.10.tar.gz):
4376 * 0bfd74660a2f6cedcf7d8256db4a63c996ffebbcdc2cf54397bfb72878c5a85a
4377 * (C) 1994-2005 Free Software Foundation, Inc.
4378 *
4379 * GnuPG is free software; you can redistribute it and/or modify
4380 * This program is free software: you can redistribute it and/or modify
4381 * it under the terms of the GNU General Public License as published by
4382 * the Free Software Foundation; either version 3 of the License, or
4383 * the Free Software Foundation, either version 3 of the License, or
4384 * (at your option) any later version.
4385 *
4386 * GnuPG is distributed in the hope that it will be useful,
4387 * This program is distributed in the hope that it will be useful,
4388 * but WITHOUT ANY WARRANTY; without even the implied warranty of
4389 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4390 * GNU General Public License for more details.
4391 *
4392 * You should have received a copy of the GNU General Public License
4393 * along with this program; if not, see <http://www.gnu.org/licenses/>.
4394 *
4395 * Note: This code is heavily based on the GNU MP Library.
4396 * Actually it's the same code with only minor changes in the
4397 * way the data is stored; this is to support the abstraction
4398 * of an optional secure memory allocation which may be used
4399 * to avoid revealing of sensitive data due to paging etc.
4400 * The GNU MP Library itself is published under the LGPL;
4401 * however I decided to publish this code under the plain GPL.
4402 * along with this program. If not, see <http://www.gnu.org/licenses/>.
4403 */
4404
4405 #include <config.h>
4406 #include <stdio.h>
4407 #include <stdlib.h>
4408
4409 #include "knobs.h"
4410 #include "mpi-internal.h"
4411 #include "longlong.h"
4412