- AA4E2EFA1E53416AEDF9CBF7A73A00FBDE7A8266F532002DC046B0B995CF49D060496C45C74944EC3F41CF0DD441884FF6230260978FCBF227903EB7213B074A
+ 62BDE6DDF9FEECCD5C2AFB41FB0B86B32B558CB48D58107AE9AB1ED46C3769731C0804BD460565B85E731146C8D942E082EE12B69FCFFD1B973A08F79BCAE4D0
mpi/mpih-div.c
(1 . 34)(1 . 29)
4555 /* mpihelp-div.c - MPI helper functions
4556 * Copyright (C) 1994, 1996 Free Software Foundation, Inc.
4557 * Copyright (C) 1998, 1999 Free Software Foundation, Inc.
4558 * Modified by No Such Labs. (C) 2015. See README.
4559 *
4560 * This file is part of GnuPG.
4561 * This file was originally part of Gnu Privacy Guard (GPG), ver. 1.4.10,
4562 * SHA256(gnupg-1.4.10.tar.gz):
4563 * 0bfd74660a2f6cedcf7d8256db4a63c996ffebbcdc2cf54397bfb72878c5a85a
4564 * (C) 1994-2005 Free Software Foundation, Inc.
4565 *
4566 * GnuPG is free software; you can redistribute it and/or modify
4567 * This program is free software: you can redistribute it and/or modify
4568 * it under the terms of the GNU General Public License as published by
4569 * the Free Software Foundation; either version 3 of the License, or
4570 * the Free Software Foundation, either version 3 of the License, or
4571 * (at your option) any later version.
4572 *
4573 * GnuPG is distributed in the hope that it will be useful,
4574 * This program is distributed in the hope that it will be useful,
4575 * but WITHOUT ANY WARRANTY; without even the implied warranty of
4576 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4577 * GNU General Public License for more details.
4578 *
4579 * You should have received a copy of the GNU General Public License
4580 * along with this program; if not, see <http://www.gnu.org/licenses/>.
4581 *
4582 * Note: This code is heavily based on the GNU MP Library.
4583 * Actually it's the same code with only minor changes in the
4584 * way the data is stored; this is to support the abstraction
4585 * of an optional secure memory allocation which may be used
4586 * to avoid revealing of sensitive data due to paging etc.
4587 * The GNU MP Library itself is published under the LGPL;
4588 * however I decided to publish this code under the plain GPL.
4589 * along with this program. If not, see <http://www.gnu.org/licenses/>.
4590 */
4591
4592 #include <config.h>
4593 #include <stdio.h>
4594 #include <stdlib.h>
4595
4596 #include "knobs.h"
4597 #include "mpi-internal.h"
4598 #include "longlong.h"
4599