summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>1997-11-26 23:02:28 +0100
committerWerner Koch <wk@gnupg.org>1997-11-26 23:02:28 +0100
commit9479cf7e24abf0998ebbc083e28741038d535b68 (patch)
tree987fa4ffc48db5e94342901fa064f41bf1a7a2da /include
parentadded assembler modules (diff)
downloadgnupg2-9479cf7e24abf0998ebbc083e28741038d535b68.tar.xz
gnupg2-9479cf7e24abf0998ebbc083e28741038d535b68.zip
How with some assembly support
Diffstat (limited to 'include')
-rw-r--r--include/Makefile.am5
-rw-r--r--include/mpi.h9
2 files changed, 14 insertions, 0 deletions
diff --git a/include/Makefile.am b/include/Makefile.am
new file mode 100644
index 000000000..bee636750
--- /dev/null
+++ b/include/Makefile.am
@@ -0,0 +1,5 @@
+## Process this file with automake to produce Makefile.in
+
+EXTRA_DIST = cipher.h errors.h iobuf.h memory.h mpi.h ttyio.h types.h \
+ util.h
+
diff --git a/include/mpi.h b/include/mpi.h
index 25fa696c4..9c5da6337 100644
--- a/include/mpi.h
+++ b/include/mpi.h
@@ -1,5 +1,6 @@
/* mpi.h - Multi Precision Integers
* Copyright (c) 1997 by Werner Koch (dd9jn)
+ * Copyright (C) 1994, 1996 Free Software Foundation, Inc.
*
* This file is part of G10.
*
@@ -16,6 +17,14 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+ *
+ * Note: This code is heavily based on the GNU MP Library.
+ * Actually it's the same code with only minor changes in the
+ * way the data is stored; this is to support the abstraction
+ * of an optional secure memory allocation which may be used
+ * to avoid revealing of sensitive data due to paging etc.
+ * The GNU MP Library itself is published under the LGPL;
+ * however I decided to publish this code under the plain GPL.
*/
#ifndef G10_MPI_H