3 * HMAC message authentication code (RFC-2104).
6 /* nettle, low-level cryptographics library
8 * Copyright (C) 2001, 2002 Niels Möller
10 * The nettle library is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU Lesser General Public License as published by
12 * the Free Software Foundation; either version 2.1 of the License, or (at your
13 * option) any later version.
15 * The nettle library is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
17 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
18 * License for more details.
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with the nettle library; see the file COPYING.LIB. If not, write to
22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
26 #ifndef NETTLE_HMAC_H_INCLUDED
27 #define NETTLE_HMAC_H_INCLUDED
29 #include "nettle-meta.h"
32 #include "ripemd160.h"
40 /* Namespace mangling */
41 #define hmac_set_key nettle_hmac_set_key
42 #define hmac_update nettle_hmac_update
43 #define hmac_digest nettle_hmac_digest
44 #define hmac_md5_set_key nettle_hmac_md5_set_key
45 #define hmac_md5_update nettle_hmac_md5_update
46 #define hmac_md5_digest nettle_hmac_md5_digest
47 #define hmac_ripemd160_set_key nettle_hmac_ripemd160_set_key
48 #define hmac_ripemd160_update nettle_hmac_ripemd160_update
49 #define hmac_ripemd160_digest nettle_hmac_ripemd160_digest
50 #define hmac_sha1_set_key nettle_hmac_sha1_set_key
51 #define hmac_sha1_update nettle_hmac_sha1_update
52 #define hmac_sha1_digest nettle_hmac_sha1_digest
53 #define hmac_sha224_set_key nettle_hmac_sha224_set_key
54 #define hmac_sha224_digest nettle_hmac_sha224_digest
55 #define hmac_sha256_set_key nettle_hmac_sha256_set_key
56 #define hmac_sha256_update nettle_hmac_sha256_update
57 #define hmac_sha256_digest nettle_hmac_sha256_digest
58 #define hmac_sha384_set_key nettle_hmac_sha384_set_key
59 #define hmac_sha384_digest nettle_hmac_sha384_digest
60 #define hmac_sha512_set_key nettle_hmac_sha512_set_key
61 #define hmac_sha512_update nettle_hmac_sha512_update
62 #define hmac_sha512_digest nettle_hmac_sha512_digest
65 hmac_set_key(void *outer
, void *inner
, void *state
,
66 const struct nettle_hash
*hash
,
67 unsigned length
, const uint8_t *key
);
69 /* This function is not strictly needed, it's s just the same as the
70 * hash update function. */
72 hmac_update(void *state
,
73 const struct nettle_hash
*hash
,
74 unsigned length
, const uint8_t *data
);
77 hmac_digest(const void *outer
, const void *inner
, void *state
,
78 const struct nettle_hash
*hash
,
79 unsigned length
, uint8_t *digest
);
82 #define HMAC_CTX(type) \
83 { type outer; type inner; type state; }
85 #define HMAC_SET_KEY(ctx, hash, length, key) \
86 hmac_set_key( &(ctx)->outer, &(ctx)->inner, &(ctx)->state, \
87 (hash), (length), (key) )
89 #define HMAC_DIGEST(ctx, hash, length, digest) \
90 hmac_digest( &(ctx)->outer, &(ctx)->inner, &(ctx)->state, \
91 (hash), (length), (digest) )
93 /* HMAC using specific hash functions */
96 struct hmac_md5_ctx
HMAC_CTX(struct md5_ctx
);
99 hmac_md5_set_key(struct hmac_md5_ctx
*ctx
,
100 unsigned key_length
, const uint8_t *key
);
103 hmac_md5_update(struct hmac_md5_ctx
*ctx
,
104 unsigned length
, const uint8_t *data
);
107 hmac_md5_digest(struct hmac_md5_ctx
*ctx
,
108 unsigned length
, uint8_t *digest
);
112 struct hmac_ripemd160_ctx
HMAC_CTX(struct ripemd160_ctx
);
115 hmac_ripemd160_set_key(struct hmac_ripemd160_ctx
*ctx
,
116 unsigned key_length
, const uint8_t *key
);
119 hmac_ripemd160_update(struct hmac_ripemd160_ctx
*ctx
,
120 unsigned length
, const uint8_t *data
);
123 hmac_ripemd160_digest(struct hmac_ripemd160_ctx
*ctx
,
124 unsigned length
, uint8_t *digest
);
128 struct hmac_sha1_ctx
HMAC_CTX(struct sha1_ctx
);
131 hmac_sha1_set_key(struct hmac_sha1_ctx
*ctx
,
132 unsigned key_length
, const uint8_t *key
);
135 hmac_sha1_update(struct hmac_sha1_ctx
*ctx
,
136 unsigned length
, const uint8_t *data
);
139 hmac_sha1_digest(struct hmac_sha1_ctx
*ctx
,
140 unsigned length
, uint8_t *digest
);
143 struct hmac_sha256_ctx
HMAC_CTX(struct sha256_ctx
);
146 hmac_sha256_set_key(struct hmac_sha256_ctx
*ctx
,
147 unsigned key_length
, const uint8_t *key
);
150 hmac_sha256_update(struct hmac_sha256_ctx
*ctx
,
151 unsigned length
, const uint8_t *data
);
154 hmac_sha256_digest(struct hmac_sha256_ctx
*ctx
,
155 unsigned length
, uint8_t *digest
);
158 #define hmac_sha224_ctx hmac_sha256_ctx
161 hmac_sha224_set_key(struct hmac_sha224_ctx
*ctx
,
162 unsigned key_length
, const uint8_t *key
);
164 #define hmac_sha224_update nettle_hmac_sha256_update
167 hmac_sha224_digest(struct hmac_sha224_ctx
*ctx
,
168 unsigned length
, uint8_t *digest
);
171 struct hmac_sha512_ctx
HMAC_CTX(struct sha512_ctx
);
174 hmac_sha512_set_key(struct hmac_sha512_ctx
*ctx
,
175 unsigned key_length
, const uint8_t *key
);
178 hmac_sha512_update(struct hmac_sha512_ctx
*ctx
,
179 unsigned length
, const uint8_t *data
);
182 hmac_sha512_digest(struct hmac_sha512_ctx
*ctx
,
183 unsigned length
, uint8_t *digest
);
186 #define hmac_sha384_ctx hmac_sha512_ctx
189 hmac_sha384_set_key(struct hmac_sha512_ctx
*ctx
,
190 unsigned key_length
, const uint8_t *key
);
192 #define hmac_sha384_update nettle_hmac_sha512_update
195 hmac_sha384_digest(struct hmac_sha512_ctx
*ctx
,
196 unsigned length
, uint8_t *digest
);
202 #endif /* NETTLE_HMAC_H_INCLUDED */