summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>1999-01-12 10:20:23 +0000
committerWerner Koch <wk@gnupg.org>1999-01-12 10:20:23 +0000
commitcb471962187b83eac0232dfcd3ff4134d96b1093 (patch)
treed5d6e321d25b0b4ba204a6b6a34f34c6f026b27f
parentce670d9592a4aba1b376168a0124f3eb96cf44d8 (diff)
downloadlibgcrypt-cb471962187b83eac0232dfcd3ff4134d96b1093.tar.gz
See ChangeLog: Tue Jan 12 11:17:18 CET 1999 Werner Koch
-rw-r--r--AUTHORS1
-rw-r--r--ChangeLog11
-rw-r--r--INSTALL4
-rw-r--r--README8
-rw-r--r--cipher/ChangeLog7
-rw-r--r--cipher/random.c7
-rw-r--r--cipher/random.h1
-rw-r--r--cipher/tiger.c6
-rw-r--r--mpi/config.links6
-rwxr-xr-xscripts/config.guess3
10 files changed, 46 insertions, 8 deletions
diff --git a/AUTHORS b/AUTHORS
index 94f47991..6d1dfb14 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -36,6 +36,7 @@ md@linux.it
TRANSLATIONS Gael Queri 1998-09-08
Disclaimer. [fr]
gqueri@mail.dotcom.fr
+Fixed a lot of typos.
TRANSLATIONS Walter Koch 1998-09-08
diff --git a/ChangeLog b/ChangeLog
index 45630acc..715f1607 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Tue Jan 12 11:17:18 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
+
+ * config.links (m68k-atari-mint): New
+
+Tue Jan 12 09:17:19 CET 1999 Gaël Quéri <gqueri@mail.dotcom.fr>
+
+ * all: Fixed typos all over the place
+
Sat Jan 9 16:02:23 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
* configure.in: Add a way to statically link rndunix
@@ -24,7 +32,8 @@ Thu Dec 10 20:15:36 CET 1998 Werner Koch <wk@isil.d.shuttle.de>
Tue Dec 8 15:09:29 CET 1998 Werner Koch <wk@isil.d.shuttle.de>
- * VERSION: Set to 0.4.5
+ * VERSION: Set to 0.4.5
+
Wed Nov 25 12:38:29 1998 Werner Koch (wk@isil.d.shuttle.de)
* configure.in (USE_RNDLINUX): New.
diff --git a/INSTALL b/INSTALL
index ac59f611..769bfb33 100644
--- a/INSTALL
+++ b/INSTALL
@@ -79,9 +79,9 @@ should put this in your ~/.gnupg/options file:
load-extension rndunix
===>8====================
This collector works by running a lot of tools which yields more or
-less unpredictable output and fedds this as entropy into the random
+less unpredictable output and feds this as entropy into the random
generator - It should work reliable but you should check whether
-it produces good output for your kinf of Unix. There are some debug
+it produces good output for your kind of Unix. There are some debug
options to help you (see cipher/rndunix.c).
diff --git a/README b/README
index 0e32ff25..2ca56339 100644
--- a/README
+++ b/README
@@ -34,7 +34,7 @@
the word "subscribe" in the body to "g10-request@net.lut.ac.uk".
This mailing list is a closed one (only subscribers are allowed
to post) to avoid misuse by folks who don't know the Netiquette
- and trash you mailspool with commercial junk.
+ and trash your mailspool with commercial junk.
See the file COPYING for copyright and warranty information.
@@ -301,7 +301,7 @@
user ID is the one with an email address you prefer - because
you have no signatures on this email address it is easy to change
this address. Remember: Your signators sign your public key (the
- primary one) together with one od your user IDs - so it is not possible
+ primary one) together with one of your user IDs - so it is not possible
to change the user ID later without voiding all the signatures.
Tip: If you hear about a key signing party on a computer conference
@@ -412,7 +412,7 @@
The primary FTP site is "ftp://ftp.gnupg.org/pub/gcrypt/"
The primary WWW page is "http://www.gnupg.org"
- See http://www.gnugp.org/mirrors.html for a list of FTP mirrors
+ See http://www.gnupg.org/mirrors.html for a list of FTP mirrors
and use them if possible.
Please direct bug reports to <gnupg-bugs@gnu.org> or better
@@ -420,7 +420,7 @@
closed list - subscribe before posting, see above (~line 33)).
Please direct questions about GnuPG to the mailing list or
one of the pgp newsgroups; this gives me more time to improve
- GnuPG. Commercial support for GnuPG will be availabe soon.
+ GnuPG. Commercial support for GnuPG will be available soon.
Have fun and remember: Echelon is looking at you kid.
diff --git a/cipher/ChangeLog b/cipher/ChangeLog
index ad7d6f83..a17ed34b 100644
--- a/cipher/ChangeLog
+++ b/cipher/ChangeLog
@@ -1,3 +1,10 @@
+Tue Jan 12 11:17:18 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
+
+ * random.c (random_is_faked): New.
+
+ * tiger.c: Only compile if we have the u64 type
+
+
Sat Jan 9 16:02:23 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
* rndunix.c (gather_random): check for setuid.
diff --git a/cipher/random.c b/cipher/random.c
index 50e14aad..b0bc832e 100644
--- a/cipher/random.c
+++ b/cipher/random.c
@@ -162,6 +162,13 @@ randomize_buffer( byte *buffer, size_t length, int level )
}
+int
+random_is_faked()
+{
+ if( !is_initialized )
+ initialize();
+ return faked_rng || quick_test;
+}
/****************
* Return a pointer to a randomized buffer of level 0 and LENGTH bits
diff --git a/cipher/random.h b/cipher/random.h
index ca9ee3ab..4b1d56d5 100644
--- a/cipher/random.h
+++ b/cipher/random.h
@@ -25,6 +25,7 @@
/*-- random.c --*/
void secure_random_alloc(void);
int quick_random_gen( int onoff );
+int random_is_faked(void);
void randomize_buffer( byte *buffer, size_t length, int level );
byte *get_random_bits( size_t nbits, int level, int secure );
void fast_random_poll( void );
diff --git a/cipher/tiger.c b/cipher/tiger.c
index 51c6450c..20d17cae 100644
--- a/cipher/tiger.c
+++ b/cipher/tiger.c
@@ -27,6 +27,11 @@
#include "memory.h"
+#ifdef HAVE_U64_TYPEDEF
+
+/* we really need it here, but as this is only experiment we
+ * can live without Tiger */
+
typedef struct {
u64 a, b, c;
byte buf[64];
@@ -964,4 +969,5 @@ gnupgext_enum_func( int what, int *sequence, int *class, int *vers )
return ret;
}
+#endif /* HAVE_U64_TYPEDEF */
diff --git a/mpi/config.links b/mpi/config.links
index 7e3e865f..63255a12 100644
--- a/mpi/config.links
+++ b/mpi/config.links
@@ -106,13 +106,17 @@ case "${target}" in
m680[234]0*-*-linux* | m68k*-*-linux*)
echo '#define ELF_SYNTAX' >>./mpi/asm-syntax.h
cat $srcdir/mpi/m68k/syntax.h >>./mpi/asm-syntax.h
- path="m68k/mc68020 m68k"
;;
m68060*-*-linux*)
echo '#define ELF_SYNTAX' >>./mpi/asm-syntax.h
cat $srcdir/mpi/m68k/syntax.h >>./mpi/asm-syntax.h
path="m68k"
;;
+ m68k-atari-mint)
+ echo '#define MIT_SYNTAX' >>./mpi/asm-syntax.h
+ cat $srcdir/mpi/m68k/syntax.h >>./mpi/asm-syntax.h
+ path="m68k/mc68020 m68k"
+ ;;
m68000*-*-* | m68060*-*-*)
echo '#define MIT_SYNTAX' >>./mpi/asm-syntax.h
cat $srcdir/mpi/m68k/syntax.h >>./mpi/asm-syntax.h
diff --git a/scripts/config.guess b/scripts/config.guess
index a33e7a5f..6413fa44 100755
--- a/scripts/config.guess
+++ b/scripts/config.guess
@@ -138,6 +138,9 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
atari*:OpenBSD:*:*)
echo m68k-unknown-openbsd${UNAME_RELEASE}
exit 0 ;;
+ atari*:[Mm]i[Nn][Tt]:*:*)
+ echo m68k-atari-mint
+ exit 0 ;;
sun3*:NetBSD:*:*)
echo m68k-sun-netbsd${UNAME_RELEASE}
exit 0 ;;