X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/16efd15b675c87d22a4fd9fb12d7bb26f2a36031..2685767a6125c1620719c7de6234aedf41857b7e:/hashsum.c diff --git a/hashsum.c b/hashsum.c index 5776d93..f2ced4b 100644 --- a/hashsum.c +++ b/hashsum.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: hashsum.c,v 1.5 2000/12/06 20:33:27 mdw Exp $ + * $Id: hashsum.c,v 1.8 2001/04/19 18:26:33 mdw Exp $ * * Hash files using some secure hash function * @@ -30,6 +30,15 @@ /*----- Revision history --------------------------------------------------* * * $Log: hashsum.c,v $ + * Revision 1.8 2001/04/19 18:26:33 mdw + * Add CRC as another hash function. + * + * 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. + * * Revision 1.5 2000/12/06 20:33:27 mdw * Make flags be macros rather than enumerations, to ensure that they're * unsigned. @@ -70,6 +79,8 @@ #include "ghash.h" +#include "crc32.h" +#include "md2.h" #include "md4.h" #include "md5.h" #include "rmd128.h" @@ -77,12 +88,18 @@ #include "rmd256.h" #include "rmd320.h" #include "sha.h" +#include "sha256.h" +#include "sha384.h" +#include "sha512.h" #include "tiger.h" /*----- Static variables --------------------------------------------------*/ static const gchash *hashtab[] = { - &md5, &md4, &sha, &rmd128, &rmd160, &rmd256, &rmd320, &tiger, + &md5, &md4, &md2, + &sha, &sha256, &sha384, &sha512, + &rmd128, &rmd160, &rmd256, &rmd320, + &tiger, &gcrc32, 0 };