More changes. Still embryonic.
[u/mdw/catacomb] / hmac.h
CommitLineData
d03ab969 1/* -*-c-*-
2 *
79ba130c 3 * $Id: hmac.h,v 1.2 1999/12/10 23:17:39 mdw Exp $
d03ab969 4 *
5 * Generic code for HMAC and NMAC
6 *
7 * (c) 1998 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: hmac.h,v $
79ba130c 33 * Revision 1.2 1999/12/10 23:17:39 mdw
34 * Split mode macros into interface and implementation.
35 *
d03ab969 36 * Revision 1.1 1999/09/03 08:41:12 mdw
37 * Initial import.
38 *
39 */
40
41/*----- Notes on the HMAC and NMAC constructions --------------------------*
42 *
79ba130c 43 * Designed by Mihir Bellare, Ran Canetti and Hugo Krawczyk, NMAC is a method
44 * for constructing keyed message authentication algorithms from unkeyed hash
45 * functions. It has been proven to provide useful security given reasonable
46 * assumptions about the underlying hash function. HMAC is an alternative
47 * formulation which doesn't require low-level access to the hash function's
48 * implementation. NMAC was designed to allow MD5 has a suitable underlying
49 * hash function, even though doubts were already being raised about its
50 * collision resistance.
d03ab969 51 */
52
79ba130c 53#ifndef CATACOMB_HMAC_H
54#define CATACOMB_HMAC_H
d03ab969 55
56#ifdef __cplusplus
57 extern "C" {
58#endif
59
60/*----- Header files ------------------------------------------------------*/
61
79ba130c 62#include <stddef.h>
d03ab969 63
64#include <mLib/bits.h>
65
79ba130c 66#ifndef CATACOMB_GMAC_H
67# include "gmac.h"
d03ab969 68#endif
69
70/*----- Macros ------------------------------------------------------------*/
71
72/* --- @HMAC_DECL@ --- *
73 *
74 * Arguments: @PRE@, @pre@ = prefixes for the underlying hash function
75 *
76 * Use: Creates declarations for the HMAC and NMAC functions.
77 */
78
79#define HMAC_DECL(PRE, pre) \
80 \
79ba130c 81/* --- An HMAC or NMAC key --- */ \
82 \
d03ab969 83typedef struct pre##_mackey { \
84 octet ochain[PRE##_HASHSZ]; /* Chaining for outer hash */ \
79ba130c 85 unsigned ocount; /* Byte count for outer hash */ \
d03ab969 86 octet ichain[PRE##_HASHSZ]; /* Chaining for inner hash */ \
79ba130c 87 unsigned icount; /* Byte count for inner hash */ \
d03ab969 88} pre##_mackey; \
89 \
79ba130c 90/* --- An HMAC or NMAC hashing context --- */ \
91 \
d03ab969 92typedef struct pre##_macctx { \
93 pre##_ctx ctx; /* Context for main hashing */ \
94 octet chain[PRE##_HASHSZ]; /* Chaining for outer hash */ \
79ba130c 95 unsigned count; /* Byte count for outer hash */ \
d03ab969 96} pre##_macctx; \
97 \
79ba130c 98/* --- @pre_nmacinit@ --- * \
d03ab969 99 * \
100 * Arguments: @pre_macctx *key@ = pointer to a MAC key object \
101 * @const void *ok@ = pointer to outer hash init vector \
102 * @const void *ik@ = pointer to inner hash init vector \
103 * \
104 * Returns: --- \
105 * \
106 * Use: Initializes a MAC key for doing NMAC hashing. \
107 */ \
108 \
79ba130c 109extern void pre##_nmacinit(pre##_mackey */*key*/, \
110 const void */*ok*/, const void */*ik*/); \
d03ab969 111 \
79ba130c 112/* --- @pre_hmacinit@ --- * \
d03ab969 113 * \
114 * Arguments: @pre_mackey *key@ = pointer to MAC key object \
115 * @const void *k@ = pointer to key to use \
116 * @size_t sz@ = size of key data \
117 * \
118 * Returns: --- \
119 * \
120 * Use: Initializes a MAC key for doing HMAC hashing. Keys \
121 * longer than the hash function's output size aren't very \
122 * useful, but are accepted. Keys longer than the hash's \
123 * block size are also accepted; they are hashed before \
124 * use, as specified in RFC2104. \
125 */ \
126 \
79ba130c 127extern void pre##_hmacinit(pre##_mackey */*key*/, \
128 const void */*k*/, size_t /*sz*/); \
d03ab969 129 \
130/* --- @pre_macinit@ --- * \
131 * \
132 * Arguments: @pre_macctx *ctx@ = pointer to MAC context block \
133 * @const pre_mackey *key@ = pointer to MAC key block \
134 * \
135 * Returns: --- \
136 * \
137 * Use: Instantiates a MAC context from a key block. \
138 */ \
139 \
79ba130c 140extern void pre##_macinit(pre##_macctx */*ctx*/, \
141 const pre##_mackey */*key*/); \
d03ab969 142 \
79ba130c 143/* --- @pre_machash@ --- * \
d03ab969 144 * \
145 * Arguments: @pre_macctx *ctx@ = pointer to MAC context block \
146 * @const void *buf@ = pointer to buffer \
147 * @size_t sz@ = size of the buffer \
148 * \
149 * Returns: --- \
150 * \
151 * Use: Hashes a buffer. \
152 */ \
153 \
79ba130c 154extern void pre##_machash(pre##_macctx */*ctx*/, \
155 const void */*buf*/, size_t /*sz*/); \
d03ab969 156 \
157/* --- @pre_macdone@ --- * \
158 * \
159 * Arguments: @pre_macctx *ctx@ = pointer to MAC context block \
160 * @void *mac@ = pointer to buffer to receive MAC \
161 * \
162 * Returns: --- \
163 * \
164 * Use: Returns the result of a MAC computation. \
165 */ \
166 \
79ba130c 167extern void pre##_macdone(pre##_macctx */*ctx*/, void */*mac*/); \
d03ab969 168 \
79ba130c 169/* --- Generic MAC interface --- */ \
d03ab969 170 \
79ba130c 171extern const gcmac pre##_hmac;
d03ab969 172
173/*----- That's all, folks -------------------------------------------------*/
174
175#ifdef __cplusplus
176 }
177#endif
178
179#endif