Make tables of standard encryption schemes etc.
[u/mdw/catacomb] / ghash.h
diff --git a/ghash.h b/ghash.h
index 61f8aae..9d63419 100644 (file)
--- a/ghash.h
+++ b/ghash.h
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: ghash.h,v 1.5 2000/07/15 10:00:58 mdw Exp $
+ * $Id: ghash.h,v 1.6 2004/04/04 19:42:30 mdw Exp $
  *
  * Generic hash function interface
  *
@@ -30,6 +30,9 @@
 /*----- Revision history --------------------------------------------------* 
  *
  * $Log: ghash.h,v $
+ * Revision 1.6  2004/04/04 19:42:30  mdw
+ * Make tables of standard encryption schemes etc.
+ *
  * Revision 1.5  2000/07/15 10:00:58  mdw
  * New generic hash operation for copying hash contexts.
  *
@@ -77,12 +80,33 @@ typedef struct ghash_ops {
   ghash *(*copy)(ghash */*h*/);                /* Make a copy of the hash context */
 } ghash_ops;
 
+#define GH_INIT(ch)            (ch)->init()
+#define GH_CLASS(H)            (h)->ops->c
+#define GH_HASH(h, p, sz)      (h)->ops->hash((h), (p), (sz))
+#define GH_DONE(h, buf)                (h)->ops->done((h), (buf))
+#define GH_DESTROY(h)          (h)->ops->destroy((h))
+#define GH_COPY(h)             (h)->ops->copy((h))
+
 typedef struct gchash {
   const char *name;                    /* Name of the hash function */
   size_t hashsz;                       /* Size of output hash */
   ghash *(*init)(void);                        /* Create a new hash instance */
+  size_t bufsz;                                /* Buffer size, or zero */
 } gchash;
 
+/*----- Tables ------------------------------------------------------------*/
+
+extern const gchash *const ghashtab[];
+
+/* --- @ghash_byname@ --- *
+ *
+ * Arguments:  @const char *p@ = pointer to name string
+ *
+ * Returns:    The named cipher class, or null.
+ */
+
+extern const gchash *ghash_byname(const char */*p*/);
+
 /*----- That's all, folks -------------------------------------------------*/
 
 #ifdef __cplusplus