Initial revision
[crypto.git] / lib / silccrypt / silchmac.c
1 /*
2
3   silchmac.c
4
5   Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
6
7   Copyright (C) 1997 - 2000 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; either version 2 of the License, or
12   (at your option) any later version.
13   
14   This program is distributed in the hope that it will be useful,
15   but WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17   GNU General Public License for more details.
18
19 */
20 /*
21  * $Id$
22  * $Log$
23  * Revision 1.1  2000/06/27 11:36:55  priikone
24  * Initial revision
25  *
26  *
27  */
28
29 #include "silcincludes.h"
30
31 /* Allocates a new SilcHmac object. First argument is the hash function
32    object to tell the hmac which hash function should be used when creating
33    HMAC's. The new SilcHmac object is returned to new_hmac argument. */
34
35 int silc_hmac_alloc(SilcHash hash, SilcHmac *new_hmac)
36 {
37   SILC_LOG_DEBUG(("Allocating new hmac object"));
38
39   *new_hmac = silc_calloc(1, sizeof(**new_hmac));
40   if (*new_hmac == NULL) {
41     SILC_LOG_ERROR(("Could not allocate new hmac object"));
42     return 0;
43   }
44
45   (*new_hmac)->hash = hash;
46   (*new_hmac)->set_key = silc_hmac_set_key;
47   (*new_hmac)->make_hmac = silc_hmac_make;
48   (*new_hmac)->make_hmac_with_key = silc_hmac_make_with_key;
49   (*new_hmac)->make_hmac_truncated = silc_hmac_make_truncated;
50
51   return 1;
52 }
53
54 /* Free's the SilcHmac object. */
55
56 void silc_hmac_free(SilcHmac hmac)
57 {
58   if (hmac)
59     silc_free(hmac);
60 }
61
62 /* Creates the HMAC. The created keyed hash value is returned to 
63    return_hash argument. */
64
65 void silc_hmac_make_internal(SilcHmac hmac, unsigned char *data,
66                              unsigned int data_len, unsigned char *key,
67                              unsigned int key_len, unsigned char *return_hash)
68 {
69   SilcHash hash = hmac->hash;
70   unsigned char inner_pad[hash->hash->block_len + 1];
71   unsigned char outer_pad[hash->hash->block_len + 1];
72   unsigned char hvalue[hash->hash->hash_len];
73   void *hash_context;
74   int i;
75
76   SILC_LOG_DEBUG(("Making HMAC for message"));
77
78   hash_context = silc_calloc(1, hash->hash->context_len());
79
80   memset(inner_pad, 0, sizeof(inner_pad));
81   memset(outer_pad, 0, sizeof(outer_pad));
82
83   /* If the key length is more than block size of the hash function, the
84      key is hashed. */
85   if (key_len > hash->hash->block_len) {
86     hash->make_hash(hash, key, key_len, hvalue);
87     key = hvalue;
88     key_len = hash->hash->hash_len;
89   }
90
91   /* Copy the key into the pads */
92   memcpy(inner_pad, key, key_len);
93   memcpy(outer_pad, key, key_len);
94
95   /* XOR the key with pads */
96   for (i = 0; i < hash->hash->block_len; i++) {
97     inner_pad[i] ^= 0x36;
98     outer_pad[i] ^= 0x5c;
99   }
100
101   /* Do the HMAC transform (too bad I can't do make_hash directly, sigh) */
102   hash->hash->init(hash_context);
103   hash->hash->update(hash_context, inner_pad, hash->hash->block_len);
104   hash->hash->update(hash_context, data, data_len);
105   hash->hash->final(hash_context, return_hash);
106   hash->hash->init(hash_context);
107   hash->hash->update(hash_context, outer_pad, hash->hash->block_len);
108   hash->hash->update(hash_context, return_hash, hash->hash->hash_len);
109   hash->hash->final(hash_context, return_hash);
110 }
111
112 /* Create the HMAC. This is thee make_hmac function pointer.  This
113    uses the internal key set with silc_hmac_set_key. */
114
115 void silc_hmac_make(SilcHmac hmac, unsigned char *data,
116                     unsigned int data_len, unsigned char *return_hash)
117 {
118   silc_hmac_make_internal(hmac, data, data_len, hmac->key, 
119                           hmac->key_len, return_hash);
120 }
121
122 /* Creates the HMAC just as above except that the hash value is truncated
123    to the truncated_len sent as argument. NOTE: One should not truncate to
124    less than half of the length of original hash value. However, this 
125    routine allows these dangerous truncations. */
126
127 void silc_hmac_make_truncated(SilcHmac hmac, unsigned char *data,
128                               unsigned int data_len,
129                               unsigned int truncated_len,
130                               unsigned char *return_hash)
131 {
132   unsigned char hvalue[hmac->hash->hash->hash_len];
133
134   silc_hmac_make_internal(hmac, data, data_len, 
135                           hmac->key, hmac->key_len, hvalue);
136   memcpy(return_hash, hvalue, truncated_len);
137   memset(hvalue, 0, sizeof(hvalue));
138 }
139
140 /* Creates HMAC just as above except that this doesn't use the internal
141    key. The key is sent as argument to the function. */
142
143 void silc_hmac_make_with_key(SilcHmac hmac, unsigned char *data,
144                              unsigned int data_len, 
145                              unsigned char *key, unsigned int key_len,
146                              unsigned char *return_hash)
147 {
148   silc_hmac_make_internal(hmac, data, data_len, key, key_len, return_hash);
149 }
150
151 /* Sets the HMAC key used in the HMAC creation */
152
153 void silc_hmac_set_key(SilcHmac hmac, const unsigned char *key,
154                        unsigned int key_len)
155 {
156   hmac->key = silc_calloc(key_len, sizeof(unsigned char));
157   memcpy(hmac->key, key, key_len);
158 }