mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-14 21:47:19 +02:00
Add SHA-224 support
This commit is contained in:
parent
36ce455f15
commit
f0902a6aef
6 changed files with 90 additions and 7 deletions
|
@ -1,5 +1,5 @@
|
|||
/* md.c - message digest dispatcher
|
||||
* Copyright (C) 1998, 1999, 2002, 2003 Free Software Foundation, Inc.
|
||||
* Copyright (C) 1998, 1999, 2002, 2003, 2006 Free Software Foundation, Inc.
|
||||
*
|
||||
* This file is part of GnuPG.
|
||||
*
|
||||
|
@ -106,6 +106,8 @@ load_digest_module (void)
|
|||
#ifdef USE_SHA256
|
||||
if (!new_list_item (DIGEST_ALGO_SHA256, sha256_get_info))
|
||||
BUG ();
|
||||
if (!new_list_item (DIGEST_ALGO_SHA224, sha224_get_info))
|
||||
BUG ();
|
||||
#endif
|
||||
if (!new_list_item (DIGEST_ALGO_MD5, md5_get_info))
|
||||
BUG ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue