X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/a351d052dda03a2cc1af01dcef4640891f551ada..02dfbd5b7af7816959dbd39c1fe628451204e35f:/ghash-def.h diff --git a/ghash-def.h b/ghash-def.h index d8dfc3c..3f0266c 100644 --- a/ghash-def.h +++ b/ghash-def.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: ghash-def.h,v 1.3 2000/07/02 18:27:42 mdw Exp $ + * $Id: ghash-def.h,v 1.7 2004/04/08 01:36:15 mdw Exp $ * * Definitions for generic hash interface * @@ -27,24 +27,6 @@ * MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: ghash-def.h,v $ - * Revision 1.3 2000/07/02 18:27:42 mdw - * (ghash->ops->done): Interface change. Passing in a null buffer pointer - * uses a buffer internal to the ghash object. The operation returns the - * address of the buffer it used. Clients of generic hashes no longer need - * to use dynamically allocated memory for hash results. - * - * Revision 1.2 2000/06/17 11:22:03 mdw - * Use secure arena for memory allocation. Minor changes in the generic - * hash interface. - * - * Revision 1.1 1999/12/10 23:21:37 mdw - * Generic interface. - * - */ - #ifndef CATACOMB_GHASH_DEF_H #define CATACOMB_GHASH_DEF_H @@ -65,6 +47,10 @@ # include "ghash.h" #endif +#ifndef CATACOMB_PARANOIA_H +# include "paranoia.h" +#endif + /*----- Generic hash function interface -----------------------------------*/ /* --- @GHASH_DEF@ --- * @@ -110,11 +96,21 @@ static octet *ghdone(ghash *h, void *buf) \ static void ghdestroy(ghash *h) \ { \ gctx *g = (gctx *)h; \ + BURN(*g); \ S_DESTROY(g); \ } \ \ -static const ghash_ops gops = { &pre, ghhash, ghdone, ghdestroy }; \ -const gchash pre = { #pre, PRE##_HASHSZ, ghinit }; +static ghash *ghcopy(ghash *h) \ +{ \ + gctx *g = (gctx *)h; \ + gctx *gg = S_CREATE(gctx); \ + memcpy(gg, g, sizeof(gctx)); \ + return (&gg->h); \ +} \ + \ +static const ghash_ops gops = \ + { &pre, ghhash, ghdone, ghdestroy, ghcopy }; \ +const gchash pre = { #pre, PRE##_HASHSZ, ghinit, PRE##_BUFSZ }; /*----- That's all, folks -------------------------------------------------*/