Boring cosmetic stuff.
[u/mdw/catacomb] / ghash-def.h
CommitLineData
a4738812 1/* -*-c-*-
2 *
d2fdbc2c 3 * $Id: ghash-def.h,v 1.4 2000/07/15 10:00:58 mdw Exp $
a4738812 4 *
5 * Definitions for generic hash interface
6 *
7 * (c) 1999 Straylight/Edgeware
8 */
9
10/*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of Catacomb.
13 *
14 * Catacomb is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU Library General Public License as
16 * published by the Free Software Foundation; either version 2 of the
17 * License, or (at your option) any later version.
18 *
19 * Catacomb is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU Library General Public License for more details.
23 *
24 * You should have received a copy of the GNU Library General Public
25 * License along with Catacomb; if not, write to the Free
26 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27 * MA 02111-1307, USA.
28 */
29
30/*----- Revision history --------------------------------------------------*
31 *
32 * $Log: ghash-def.h,v $
d2fdbc2c 33 * Revision 1.4 2000/07/15 10:00:58 mdw
34 * New generic hash operation for copying hash contexts.
35 *
a351d052 36 * Revision 1.3 2000/07/02 18:27:42 mdw
37 * (ghash->ops->done): Interface change. Passing in a null buffer pointer
38 * uses a buffer internal to the ghash object. The operation returns the
39 * address of the buffer it used. Clients of generic hashes no longer need
40 * to use dynamically allocated memory for hash results.
41 *
28ef1f45 42 * Revision 1.2 2000/06/17 11:22:03 mdw
43 * Use secure arena for memory allocation. Minor changes in the generic
44 * hash interface.
45 *
a4738812 46 * Revision 1.1 1999/12/10 23:21:37 mdw
47 * Generic interface.
48 *
49 */
50
51#ifndef CATACOMB_GHASH_DEF_H
52#define CATACOMB_GHASH_DEF_H
53
54#ifdef __cplusplus
55 extern "C" {
56#endif
57
58/*----- Header files ------------------------------------------------------*/
59
60#include <mLib/bits.h>
61#include <mLib/sub.h>
62
28ef1f45 63#ifndef CATACOMB_ARENA_H
64# include "arena.h"
65#endif
66
a4738812 67#ifndef CATACOMB_GHASH_H
68# include "ghash.h"
69#endif
70
71/*----- Generic hash function interface -----------------------------------*/
72
73/* --- @GHASH_DEF@ --- *
74 *
75 * Arguments: @PRE, pre@ = prefixes for hash function
76 *
77 * Use: Defines the generic hash instance.
78 */
79
80#define GHASH_DEF(PRE, pre) \
81 \
82static const ghash_ops gops; \
83 \
84typedef struct gctx { \
85 ghash h; \
86 pre##_ctx c; \
a351d052 87 octet buf[PRE##_HASHSZ]; \
a4738812 88} gctx; \
89 \
90static ghash *ghinit(void) \
91{ \
28ef1f45 92 gctx *g = S_CREATE(gctx); \
a4738812 93 g->h.ops = &gops; \
94 pre##_init(&g->c); \
95 return (&g->h); \
96} \
97 \
98static void ghhash(ghash *h, const void *p, size_t sz) \
99{ \
100 gctx *g = (gctx *)h; \
101 pre##_hash(&g->c, p, sz); \
102} \
103 \
a351d052 104static octet *ghdone(ghash *h, void *buf) \
a4738812 105{ \
106 gctx *g = (gctx *)h; \
a351d052 107 if (!buf) \
108 buf = g->buf; \
a4738812 109 pre##_done(&g->c, buf); \
a351d052 110 return (buf); \
a4738812 111} \
112 \
113static void ghdestroy(ghash *h) \
114{ \
115 gctx *g = (gctx *)h; \
28ef1f45 116 S_DESTROY(g); \
a4738812 117} \
118 \
d2fdbc2c 119static ghash *ghcopy(ghash *h) \
120{ \
121 gctx *g = (gctx *)h; \
122 gctx *gg = S_CREATE(gctx); \
123 memcpy(gg, g, sizeof(gctx)); \
124 return (&gg->h); \
125} \
126 \
127static const ghash_ops gops = \
128 { &pre, ghhash, ghdone, ghdestroy, ghcopy }; \
28ef1f45 129const gchash pre = { #pre, PRE##_HASHSZ, ghinit };
a4738812 130
131/*----- That's all, folks -------------------------------------------------*/
132
133#ifdef __cplusplus
134 }
135#endif
136
137#endif