chiark / gitweb /
server/tripe.h: Don't say `struct bulkcrypto' where we don't have to.
[tripe] / server / tripe.h
index a967ae6d778b56d93d2c0f23c86ea62089d5107a..86d3779e4eb4decdabbcecf5525137fd08555a94 100644 (file)
@@ -176,7 +176,7 @@ typedef struct bulkcrypto {
 struct algswitch {
   const gchash *h;                     /* Hash function */
   const gccipher *mgf;                 /* Mask-generation function */
-  const struct bulkcrypto *bulk;       /* Bulk crypto transformation */
+  const bulkcrypto *bulk;              /* Bulk crypto transformation */
   const gccipher *c;                   /* Symmetric encryption scheme */
   const gcmac *m;                      /* Message authentication code */
   const gccipher *b;                   /* Block cipher */
@@ -210,7 +210,7 @@ typedef struct knode {
 
 #define HASH_STRING(h, s) GH_HASH((h), (s), sizeof(s))
 
-extern const struct bulkcrypto bulktab[];
+extern const bulkcrypto bulktab[];
 
 /*----- Data structures ---------------------------------------------------*/