- B98CF2FB49B284C7FFDA191D6E1A336E87BC9D5C302753C04E704DE455793BD9736D6318E1C314FC8CF97BAEBC830EAE998C35382AFB2810126C1CC9BD18BDCE+ ECA25CB1840CEF7D60FA2BC6ECB32660CFAD14E3A3A8AEEB11EC5A5EB2D702C972331351DA75C5C111B7C90075B1922DB5C475C246B11D7D6097E50538B230F8mpi/mpih-rshift.c(1 . 34)(1 . 29)
4860 /* mpih-rshift.c  -  MPI helper functions
4861  * Copyright (C) 1994, 1996, 1998, 1999,
4862  *               2000, 2001 Free Software Foundation, Inc.
4863  * Modified by No Such Labs. (C) 2015. See README.
4864  *
4865  * This file is part of GNUPG
4866  * This file was originally part of Gnu Privacy Guard (GPG), ver. 1.4.10,
4867  * SHA256(gnupg-1.4.10.tar.gz):
4868  *        0bfd74660a2f6cedcf7d8256db4a63c996ffebbcdc2cf54397bfb72878c5a85a
4869  * (C) 1994-2005 Free Software Foundation, Inc.
4870  *
4871  * GNUPG is free software; you can redistribute it and/or modify
4872  * This program is free software: you can redistribute it and/or modify
4873  * it under the terms of the GNU General Public License as published by
4874  * the Free Software Foundation; either version 3 of the License, or
4875  * the Free Software Foundation, either version 3 of the License, or
4876  * (at your option) any later version.
4877  *
4878  * GNUPG is distributed in the hope that it will be useful,
4879  * This program is distributed in the hope that it will be useful,
4880  * but WITHOUT ANY WARRANTY; without even the implied warranty of
4881  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4882  * GNU General Public License for more details.
4883  *
4884  * You should have received a copy of the GNU General Public License
4885  * along with this program; if not, see <http://www.gnu.org/licenses/>.
4886  *
4887  * Note: This code is heavily based on the GNU MP Library.
4888  *	 Actually it's the same code with only minor changes in the
4889  *	 way the data is stored; this is to support the abstraction
4890  *	 of an optional secure memory allocation which may be used
4891  *	 to avoid revealing of sensitive data due to paging etc.
4892  *	 The GNU MP Library itself is published under the LGPL;
4893  *	 however I decided to publish this code under the plain GPL.
4894  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
4895  */
4896 
4897 #include <config.h>
4898 #include <stdio.h>
4899 #include <stdlib.h>
4900 
4901 #include "knobs.h"
4902 #include "mpi-internal.h"
4903 
4904