Added support for MD2 hash function.
[u/mdw/catacomb] / hashsum.c
index 35e35fb..0776ee8 100644 (file)
--- a/hashsum.c
+++ b/hashsum.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: hashsum.c,v 1.6 2001/01/25 21:40:14 mdw Exp $
+ * $Id: hashsum.c,v 1.7 2001/02/21 20:03:22 mdw Exp $
  *
  * Hash files using some secure hash function
  *
@@ -30,6 +30,9 @@
 /*----- Revision history --------------------------------------------------* 
  *
  * $Log: hashsum.c,v $
+ * Revision 1.7  2001/02/21 20:03:22  mdw
+ * Added support for MD2 hash function.
+ *
  * Revision 1.6  2001/01/25 21:40:14  mdw
  * Support for new SHA variants added.
  *
@@ -73,6 +76,7 @@
 
 #include "ghash.h"
 
+#include "md2.h"
 #include "md4.h"
 #include "md5.h"
 #include "rmd128.h"
@@ -88,7 +92,7 @@
 /*----- Static variables --------------------------------------------------*/
 
 static const gchash *hashtab[] = {
-  &md5, &md4,
+  &md5, &md4, &md2,
   &sha, &sha256, &sha384, &sha512,
   &rmd128, &rmd160, &rmd256, &rmd320,
   &tiger,