1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-12-23 10:29:58 +01:00

* Makefile.am, md.c (load_digest_module): TIGER is now always enabled.

This commit is contained in:
David Shaw 2002-09-27 19:27:24 +00:00
parent ddf90c407b
commit 37f29e8102
3 changed files with 10 additions and 6 deletions

View File

@ -1,3 +1,8 @@
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> 2002-09-26 Werner Koch <wk@gnupg.org>
* tiger.c (tiger_get_info): Use a regular OID. Note that this * tiger.c (tiger_get_info): Use a regular OID. Note that this

View File

@ -51,12 +51,13 @@ libcipher_a_SOURCES = cipher.c \
rndw32.c \ rndw32.c \
md5.c \ md5.c \
rmd160.c \ rmd160.c \
sha1.c sha1.c \
tiger.c
EXTRA_libcipher_a_SOURCES = idea-stub.c tiger.c EXTRA_libcipher_a_SOURCES = idea-stub.c
libcipher_a_DEPENDENCIES = @IDEA_O@ @TIGER_O@ libcipher_a_DEPENDENCIES = @IDEA_O@
libcipher_a_LIBADD = @IDEA_O@ @TIGER_O@ libcipher_a_LIBADD = @IDEA_O@
tiger.o: $(srcdir)/tiger.c tiger.o: $(srcdir)/tiger.c
`echo $(COMPILE) -c $(srcdir)/tiger.c | sed -e 's/-O[2-9s]*/-O1/g' ` `echo $(COMPILE) -c $(srcdir)/tiger.c | sed -e 's/-O[2-9s]*/-O1/g' `

View File

@ -95,10 +95,8 @@ load_digest_module (void)
/* We load them in reverse order so that the most /* We load them in reverse order so that the most
frequently used are the first in the list. */ frequently used are the first in the list. */
#ifdef USE_TIGER
if (!new_list_item (DIGEST_ALGO_TIGER, tiger_get_info)) if (!new_list_item (DIGEST_ALGO_TIGER, tiger_get_info))
BUG(); BUG();
#endif
if (!new_list_item (DIGEST_ALGO_MD5, md5_get_info)) if (!new_list_item (DIGEST_ALGO_MD5, md5_get_info))
BUG (); BUG ();
if (!new_list_item (DIGEST_ALGO_RMD160, rmd160_get_info)) if (!new_list_item (DIGEST_ALGO_RMD160, rmd160_get_info))