cfb8: Fix decrypt path
[gd/nettle] / hmac.c
1 /* hmac.c
2
3    HMAC message authentication code (RFC-2104).
4
5    Copyright (C) 2001 Niels Möller
6
7    This file is part of GNU Nettle.
8
9    GNU Nettle is free software: you can redistribute it and/or
10    modify it under the terms of either:
11
12      * the GNU Lesser General Public License as published by the Free
13        Software Foundation; either version 3 of the License, or (at your
14        option) any later version.
15
16    or
17
18      * the GNU General Public License as published by the Free
19        Software Foundation; either version 2 of the License, or (at your
20        option) any later version.
21
22    or both in parallel, as here.
23
24    GNU Nettle is distributed in the hope that it will be useful,
25    but WITHOUT ANY WARRANTY; without even the implied warranty of
26    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
27    General Public License for more details.
28
29    You should have received copies of the GNU General Public License and
30    the GNU Lesser General Public License along with this program.  If
31    not, see http://www.gnu.org/licenses/.
32 */
33
34 #if HAVE_CONFIG_H
35 # include "config.h"
36 #endif
37
38 #include <assert.h>
39 /* Needed for alloca on freebsd */
40 #include <stdlib.h>
41 #include <string.h>
42
43 #include "hmac.h"
44
45 #include "memxor.h"
46 #include "nettle-internal.h"
47
48 #define IPAD 0x36
49 #define OPAD 0x5c
50
51 void
52 hmac_set_key(void *outer, void *inner, void *state,
53              const struct nettle_hash *hash,
54              size_t key_length, const uint8_t *key)
55 {
56   TMP_DECL(pad, uint8_t, NETTLE_MAX_HASH_BLOCK_SIZE);
57   TMP_ALLOC(pad, hash->block_size);
58   
59   hash->init(outer);
60   hash->init(inner);
61
62   if (key_length > hash->block_size)
63     {
64       /* Reduce key to the algorithm's hash size. Use the area pointed
65        * to by state for the temporary state. */
66
67       TMP_DECL(digest, uint8_t, NETTLE_MAX_HASH_DIGEST_SIZE);
68       TMP_ALLOC(digest, hash->digest_size);
69
70       hash->init(state);
71       hash->update(state, key_length, key);
72       hash->digest(state, hash->digest_size, digest);
73
74       key = digest;
75       key_length = hash->digest_size;
76     }
77
78   assert(key_length <= hash->block_size);
79   
80   memset(pad, OPAD, hash->block_size);
81   memxor(pad, key, key_length);
82
83   hash->update(outer, hash->block_size, pad);
84
85   memset(pad, IPAD, hash->block_size);
86   memxor(pad, key, key_length);
87
88   hash->update(inner, hash->block_size, pad);
89
90   memcpy(state, inner, hash->context_size);
91 }
92
93 void
94 hmac_update(void *state,
95             const struct nettle_hash *hash,
96             size_t length, const uint8_t *data)
97 {
98   hash->update(state, length, data);
99 }
100
101 void
102 hmac_digest(const void *outer, const void *inner, void *state,
103             const struct nettle_hash *hash,         
104             size_t length, uint8_t *dst)
105 {
106   TMP_DECL(digest, uint8_t, NETTLE_MAX_HASH_DIGEST_SIZE);
107   TMP_ALLOC(digest, hash->digest_size);
108
109   hash->digest(state, hash->digest_size, digest);
110
111   memcpy(state, outer, hash->context_size);
112
113   hash->update(state, hash->digest_size, digest);
114   hash->digest(state, length, dst);
115
116   memcpy(state, inner, hash->context_size);
117 }