1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-18 00:49:50 +02:00

* md.c (string_to_digest_algo): Allow read/write SHA384 and SHA512.

This commit is contained in:
David Shaw 2004-12-01 04:01:16 +00:00
parent 5dcc3dc353
commit 93ec34cc7a
2 changed files with 5 additions and 15 deletions

View File

@ -1,3 +1,8 @@
2004-11-30 David Shaw <dshaw@jabberwocky.com>
* md.c (string_to_digest_algo): Allow read/write SHA384 and
SHA512.
2004-11-03 Timo Schulz <twoaday@g10code.com>
* idea-stub.c (dlopen, dlsym): Use w32_strerror instead of

View File

@ -124,21 +124,6 @@ string_to_digest_algo( const char *string )
{
struct md_digest_list_s *r;
/* Hi there. I see you changing that code so you can use the new
SHA hashes. Before you do it, please think about it. There
are no official releases of any OpenPGP programs that generate
these hashes, and we're trying to get a code base that can
understand the hashes before we release one that generates
them. - dshaw */
if(!ascii_strcasecmp("sha384",string)
|| !ascii_strcasecmp("sha512",string))
{
log_info(_("digest algorithm `%s' is read-only in this release\n"),
string);
return 0;
}
do {
for(r = digest_list; r; r = r->next )
if( !ascii_strcasecmp( r->name, string ) )