+2003-10-10 Werner Koch <wk@gnupg.org>
+
+ * primegen.c (gen_prime): Bail out if we try to generate a prime
+ with less than 16 bits. Include i18n.h.
+
+2003-10-06 Werner Koch <wk@gnupg.org>
+
+ * primegen.c (gen_prime): Bail out if NBITS is zero. This is
+ Debian bug #213989 reported by Max <rusmir@tula.net>.
+
+2003-09-04 David Shaw <dshaw@jabberwocky.com>
+
+ * md.c (string_to_digest_algo): Enable read-write SHA-256 support.
+
+ * algorithms.h, Makefile.am, md.c (load_digest_module,
+ string_to_digest_algo), tiger.c: Drop TIGER/192 support.
+
+2003-08-28 David Shaw <dshaw@jabberwocky.com>
+
+ * idea-stub.c, random.c; s/__MINGW32__/_WIN32/ to help building on
+ native Windows compilers. Requested by Brian Gladman. From
+ Werner on stable branch.
+
+2003-08-21 David Shaw <dshaw@jabberwocky.com>
+
+ * random.c (getfnc_gather_random): Don't check NAME_OF_DEV_RANDOM
+ twice. Use NAME_OF_DEV_URANDOM.
+
+2003-05-24 David Shaw <dshaw@jabberwocky.com>
+
+ * bithelp.h, des.c, random.c, rndlinux.c, sha1.c, blowfish.c,
+ elgamal.c, rijndael.c, rndunix.c, sha256.c, cast5.c, idea-stub.c,
+ rmd160.c, rndw32.c, sha512.c, md5.c, rmd160test.c, rsa.c, tiger.c:
+ Edit all preprocessor instructions to remove whitespace before the
+ '#'. This is not required by C89, but there are some compilers
+ out there that don't like it.
+
+2003-05-15 David Shaw <dshaw@jabberwocky.com>
+
+ * cipher.c (setup_cipher_table): #ifdef IDEA.
+
+ * random.c (fast_random_poll): Only use times() if we HAVE_TIMES.
+
+ * sha512.c, tiger.c: Use the U64_C() macro to specify 64-bit
+ constants. U64_C is defined in include/types.h and uses the
+ correct suffix depending on the underlying type of u64.
+
+ * idea-stub.c (load_module): Catch an error if the idea module
+ file is unloadable for some reason (unreadable, bad permissions,
+ etc.)
+
+ * md.c (string_to_digest_algo): Give a warning about TIGER192 not
+ being part of OpenPGP.
+
+2003-04-15 Werner Koch <wk@gnupg.org>
+
+ * md.c (md_start_debug): Need to open the file in binary mode.
+
+2003-02-21 David Shaw <dshaw@jabberwocky.com>
+
+ * cipher.c (setup_cipher_table): #ifdef all optional ciphers.
+
+ * md.c (load_digest_module): #ifdef all optional digests.
+
+2003-02-11 David Shaw <dshaw@jabberwocky.com>
+
+ * Makefile.am, md.c (load_digest_module): Only build in SHA384/512
+ and TIGER if specifically enabled by the 64-bit type check in
+ configure.
+
+2003-02-04 David Shaw <dshaw@jabberwocky.com>
+
+ * sha256.c, sha512.c: New.
+
+ * Makefile.am, algorithms.h, md.c (load_digest_module,
+ string_to_digest_algo): Add read-only support for the new SHAs.
+
+2002-11-06 David Shaw <dshaw@jabberwocky.com>
+
+ * rndw32.c [__CYGWIN32__]: Don't include winioctl.h - it is not
+ required anymore. (From Werner)
+
+ * random.c (read_seed_file,update_random_seed_file): Use binary
+ mode for __CYGWIN__. (From Werner)
+
+ * blowfish.c (burn_stack), cast5.c (burn_stack), des.c
+ (burn_stack), md5.c (burn_stack), random.c (burn_stack, read_pool,
+ fast_random_poll), rijndael.c (burn_stack), rmd160.c (burn_stack),
+ rndegd.c (rndegd_gather_random), rndlinux.c
+ (rndlinux_gather_random), sha1.c (burn_stack), tiger.c
+ (burn_stack), twofish.c (burn_stack): Replace various calls to
+ memset() with the more secure wipememory().
+
+2002-11-02 David Shaw <dshaw@jabberwocky.com>
+
+ * cipher.c (string_to_cipher_algo), md.c (string_to_digest_algo):
+ Allow the Sxxx and Hxxx format for cipher and digest names.
+
+2002-10-31 Stefan Bellon <sbellon@sbellon.de>
+
+ * rndriscos.c (rndriscos_gather_random): Use riscos_load_module()
+ to load CryptRandom module.
+
+2002-10-12 Werner Koch <wk@gnupg.org>
+
+ * rndunix.c (my_popen): Make sure that stdin and stderr are
+ connected to a file. This is to avoid NetBSD to complain about
+ set{u,g}id programs invoked with fd 0, 2 closed. Reported by
+ Cristian Biere.
+ (start_gatherer): Likewise. Reordered code.
+
+2002-10-02 David Shaw <dshaw@jabberwocky.com>
+
+ * tiger.c (tiger_get_info): Select the OID to use for TIGER at
+ compile time.
+
+2002-09-27 David Shaw <dshaw@jabberwocky.com>
+
+ * Makefile.am, md.c (load_digest_module): TIGER is now always
+ enabled.
+
+2002-09-26 Werner Koch <wk@gnupg.org>
+
+ * tiger.c (tiger_get_info): Use a regular OID. Note that this
+ breaks all TIGER generated signatures; if we want to do something
+ about it we have to do it in ../g10/sig-check.c .
+
+2002-09-17 Werner Koch <wk@gnupg.org>
+
+ * rndw32.c (SIZEOF_DISK_PERFORMANCE_STRUCT): Increased to 256.
+
+2002-09-12 Stefan Bellon <sbellon@sbellon.de>
+
+ * rand-internal.h (rndriscos_gather_random): Added prototype.
+
+2002-08-30 Werner Koch <wk@gnupg.org>
+
+ * random.c: Automagically detect the entropy gatherer when
+ this feature is configured.
+ * rndegd.c (rndegd_connect_socket): New. Factored out from ..
+ (rndegd_gather_random): here and call it.
+ (do_read): Update the counter variables correctly. This was not a
+ problem due to the way EGD works. Bug found by Christian Biere.
+
+2002-08-20 Werner Koch <wk@gnupg.org>
+
+ * primegen.c (generate_elg_prime): Return all factors for mode 1.
+ Bug reported by Bob Mathews.
+
2002-08-12 Werner Koch <wk@gnupg.org>
* cipher.c: Include the DUMMY cipher only when the new ALLOW_DUMMY