~ubuntu-branches/ubuntu/hardy/gnupg/hardy-updates

« back to all changes in this revision

Viewing changes to cipher/md.c

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2006-11-03 09:18:26 UTC
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: james.westby@ubuntu.com-20061103091826-89kwl8tk1xypbmtk
Tags: upstream-1.4.5
ImportĀ upstreamĀ versionĀ 1.4.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* md.c  -  message digest dispatcher
2
 
 *      Copyright (C) 1998, 1999, 2002, 2003 Free Software Foundation, Inc.
 
2
 * Copyright (C) 1998, 1999, 2002, 2003, 2006 Free Software Foundation, Inc.
3
3
 *
4
4
 * This file is part of GnuPG.
5
5
 *
106
106
#ifdef USE_SHA256
107
107
  if (!new_list_item (DIGEST_ALGO_SHA256, sha256_get_info)) 
108
108
    BUG ();
 
109
  if (!new_list_item (DIGEST_ALGO_SHA224, sha224_get_info)) 
 
110
    BUG ();
109
111
#endif
110
112
  if (!new_list_item (DIGEST_ALGO_MD5, md5_get_info)) 
111
113
    BUG ();