X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/36c67859bdb3aae4d5b837290939548bd24ad842..1589affab225db500965e2cb869c534d6860e6bd:/hmac-def.h diff --git a/hmac-def.h b/hmac-def.h index 95d7562..ffd796c 100644 --- a/hmac-def.h +++ b/hmac-def.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: hmac-def.h,v 1.6 2001/04/03 19:35:45 mdw Exp $ + * $Id: hmac-def.h,v 1.7 2001/04/19 18:24:45 mdw Exp $ * * Definitions for HMAC and NMAC * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: hmac-def.h,v $ + * Revision 1.7 2001/04/19 18:24:45 mdw + * Provide correct key sizes for NMAC, HMAC and SSLMAC. + * * Revision 1.6 2001/04/03 19:35:45 mdw * Support the SSL HMAC variant (untested). * @@ -96,7 +99,9 @@ \ /* --- Useful constants --- */ \ \ -const octet pre##_mackeysz[] = { KSZ_ANY, PRE##_STATESZ }; \ +const octet pre##_hmackeysz[] = { KSZ_ANY, PRE##_STATESZ }; \ +const octet pre##_sslmackeysz[] = { KSZ_ANY, PRE##_STATESZ }; \ +const octet pre##_nmackeysz[] = { KSZ_SET, 2 * PRE##_STATESZ, 0 }; \ \ /* --- @pre_nmacinit@ --- * \ * \ @@ -178,7 +183,6 @@ void pre##_hmacinit(pre##_mackey *key, const void *k, size_t sz) \ \ void pre##_sslmacinit(pre##_mackey *key, const void *k, size_t sz) \ { \ - int i; \ const octet *kbuf = k; \ pre##_ctx ctx; \ octet buf[PRE##_HASHSZ]; \ @@ -261,10 +265,11 @@ void pre##_macdone(pre##_macctx *ctx, void *mac) \ /* --- Generic MAC interface --- */ \ \ static const gmac_ops gkops; \ -static const ghash_ops gops; \ +static const ghash_ops gops, gnops, gsslops; \ \ typedef struct gkctx { \ gmac m; \ + const ghash_ops *gops; \ pre##_mackey k; \ } gkctx; \ \ @@ -278,7 +283,7 @@ static ghash *gkinit(gmac *m) \ { \ gkctx *gk = (gkctx *)m; \ gctx *g = S_CREATE(gctx); \ - g->h.ops = &gops; \ + g->h.ops = gk->gops; \ pre##_macinit(&g->c, &gk->k); \ return (&g->h); \ } \ @@ -287,14 +292,27 @@ static gmac *gkey(const void *k, size_t sz) \ { \ gkctx *gk = S_CREATE(gkctx); \ gk->m.ops = &gkops; \ + gk->gops = &gops; \ pre##_hmacinit(&gk->k, k, sz); \ return (&gk->m); \ } \ \ +static gmac *gnkey(const void *k, size_t sz) \ +{ \ + gkctx *gk = S_CREATE(gkctx); \ + const octet *kk = k; \ + assert(keysz(sz, pre##_nmackeysz) == sz); \ + gk->m.ops = &gkops; \ + gk->gops = &gnops; \ + pre##_nmacinit(&gk->k, kk, kk + PRE##_STATESZ); \ + return (&gk->m); \ +} \ + \ static gmac *gsslkey(const void *k, size_t sz) \ { \ gkctx *gk = S_CREATE(gkctx); \ gk->m.ops = &gkops; \ + gk->gops = &gsslops; \ pre##_sslmacinit(&gk->k, k, sz); \ return (&gk->m); \ } \ @@ -342,14 +360,24 @@ static ghash *ghinit(void) \ return (0); \ } \ \ +const gcmac pre##_nmac = \ + { #pre "-nmac", PRE##_HASHSZ, pre##_nmackeysz, gnkey }; \ const gcmac pre##_hmac = \ - { #pre "-hmac", PRE##_HASHSZ, pre##_mackeysz, gkey }; \ + { #pre "-hmac", PRE##_HASHSZ, pre##_hmackeysz, gkey }; \ const gcmac pre##_sslmac = \ - { #pre "-sslmac", PRE##_HASHSZ, pre##_mackeysz, gsslkey }; \ + { #pre "-sslmac", PRE##_HASHSZ, pre##_sslmackeysz, gsslkey }; \ static const gmac_ops gkops = { &pre##_hmac, gkinit, gkdestroy }; \ +static const gmac_ops gnkops = { &pre##_nmac, gkinit, gkdestroy }; \ +static const gmac_ops gsslkops = { &pre##_sslmac, gkinit, gkdestroy }; \ static const gchash gch = { #pre "-hmac", PRE##_HASHSZ, ghinit }; \ static const ghash_ops gops = \ { &gch, ghhash, ghdone, ghdestroy, ghcopy }; \ +static const gchash gnch = { #pre "-nmac", PRE##_HASHSZ, ghinit }; \ +static const ghash_ops gnops = \ + { &gch, ghhash, ghdone, ghdestroy, ghcopy }; \ +static const gchash gsslch = { #pre "-sslmac", PRE##_HASHSZ, ghinit }; \ +static const ghash_ops gsslops = \ + { &gch, ghhash, ghdone, ghdestroy, ghcopy }; \ \ HMAC_TEST(PRE, pre)