bool -> SilcBool
[silc.git] / lib / silccrypt / silchmac.h
1 /*
2
3   silchmac.h 
4
5   Author: Pekka Riikonen <priikone@silcnet.org>
6
7   Copyright (C) 1999 - 2002 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; version 2 of the License.
12
13   This program is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18 */
19
20 #ifndef SILCHMAC_H
21 #define SILCHMAC_H
22
23 /****h* silccrypt/SILC HMAC Interface
24  *
25  * DESCRIPTION
26  *
27  *    This is the interface for HMAC, or the keyed hash values, that are
28  *    used for packet and message authentication.  These routines uses
29  *    already implemented hash functions from the SilcHashAPI. These 
30  *    routines were created according to RFC 2104.
31  *
32  ***/
33
34 /****s* silccrypt/SilcHMACAPI/SilcHmac
35  *
36  * NAME
37  * 
38  *    typedef struct SilcHmacStruct *SilcHmac;
39  *
40  * DESCRIPTION
41  *
42  *    This context is the actual HMAC context and is allocated
43  *    by silc_hmac_alloc and given as argument usually to all
44  *    silc_hmac_* functions.  It is freed by the silc_hmac_free
45  *    function.
46  *
47  ***/
48 typedef struct SilcHmacStruct *SilcHmac;
49
50 /****s* silccrypt/SilcHMACAPI/SilcHmacObject
51  *
52  * NAME
53  * 
54  *    typedef struct { ... } SilcHmacObject;
55  *
56  * DESCRIPTION
57  *
58  *    This structure represents one HMAC.  The HMAC's name and the
59  *    MAC length is defined in the structure.  This structure is
60  *    then given as argument to the silc_hmac_register.  That function
61  *    is used to register all HMACs into SILC.  They can be then
62  *    allocated by the name found in this structure by calling the
63  *    silc_hmac_alloc.
64  *
65  ***/
66 typedef struct {
67   char *name;
68   SilcUInt32 len;
69 } SilcHmacObject;
70
71 /* Marks for all hmacs. This can be used in silc_hmac_unregister
72    to unregister all hmacs at once. */
73 #define SILC_ALL_HMACS ((SilcHmacObject *)1)
74
75 /* Default hmacs for silc_hmac_register_default(). */
76 extern DLLAPI const SilcHmacObject silc_default_hmacs[];
77
78 /* Default HMAC in the SILC protocol */
79 #define SILC_DEFAULT_HMAC "hmac-sha1-96"
80
81 /* Prototypes */
82
83 /****f* silccrypt/SilcHMACAPI/silc_hmac_register
84  *
85  * SYNOPSIS
86  *
87  *    SilcBool silc_hmac_register(const SilcHmacObject *hmac);
88  *
89  * DESCRIPTION
90  *
91  *    Registers a new HMAC into the SILC. This function is used at the
92  *    initialization of the SILC.  All registered HMACs should be
93  *    unregistered with silc_hmac_unregister.  The `hmac' includes the
94  *    name of the HMAC and the length of the MAC.  Usually this
95  *    function is not called directly.  Instead, application can call
96  *    the silc_hmac_register_default to register all default HMACs
97  *    that are builtin the sources.  Returns FALSE on error.
98  *
99  ***/
100 SilcBool silc_hmac_register(const SilcHmacObject *hmac);
101
102 /****f* silccrypt/SilcHMACAPI/silc_hmac_unregister
103  *
104  * SYNOPSIS
105  *
106  *    SilcBool silc_hmac_unregister(SilcHmacObject *hmac);
107  *
108  * DESCRIPTION
109  *
110  *    Unregister a HMAC from SILC by the HMAC structure `hmac'.  This
111  *    should be called for all registered HMAC's.  Returns FALSE on
112  *    error.
113  *
114  ***/
115 SilcBool silc_hmac_unregister(SilcHmacObject *hmac);
116
117 /****f* silccrypt/SilcHMACAPI/silc_hmac_register_default
118  *
119  * SYNOPSIS
120  *
121  *    SilcBool silc_hmac_register_default(void);
122  *
123  * DESCRIPTION
124  *
125  *    Registers all default HMACs into the SILC.  These are the HMACs
126  *    that are builtin in the sources.  See the list of default HMACs
127  *    in the silchmac.c source file.  The application may use this
128  *    to register default HMACs if specific HMAC in any specific order
129  *    is not wanted (application's configuration usually may decide
130  *    the order of the registration, in which case this should not be
131  *    used).
132  *
133  ***/
134 SilcBool silc_hmac_register_default(void);
135
136 /****f* silccrypt/SilcHMACAPI/silc_hmac_unregister_all
137  *
138  * SYNOPSIS
139  *
140  *    SilcBool silc_hmac_unregister_all(void);
141  *
142  * DESCRIPTION
143  *
144  *    Unregisters all registered HMACs.
145  *
146  ***/
147 SilcBool silc_hmac_unregister_all(void);
148
149 /****f* silccrypt/SilcHMACAPI/silc_hmac_alloc
150  *
151  * SYNOPSIS
152  *
153  *    SilcBool silc_hmac_alloc(const char *name, SilcHash hash,
154  *                         SilcHmac *new_hmac);
155  *
156  * DESCRIPTION
157  *
158  *    Allocates a new SilcHmac object of name of `name'.  The `hash' may
159  *    be provided as argument.  If provided it is used as the hash function
160  *    of the HMAC.  If it is NULL then the hash function is allocated and
161  *    the name of the hash algorithm is derived from the `name'.  Returns
162  *    FALSE if such HMAC does not exist.
163  *
164  ***/
165 SilcBool silc_hmac_alloc(const char *name, SilcHash hash, SilcHmac *new_hmac);
166
167 /****f* silccrypt/SilcHMACAPI/silc_hmac_free
168  *
169  * SYNOPSIS
170  *
171  *    void silc_hmac_free(SilcHmac hmac);
172  *
173  * DESCRIPTION
174  *
175  *    Frees the allocated HMAC context.  The key that may have been set
176  *    with the silc_hmac_set_key is also destroyed.
177  *
178  ***/
179 void silc_hmac_free(SilcHmac hmac);
180
181 /****f* silccrypt/SilcHMACAPI/silc_hmac_is_supported
182  *
183  * SYNOPSIS
184  *
185  *    SilcBool silc_hmac_is_supported(const char *name);
186  *
187  * DESCRIPTION
188  *
189  *    Returns TRUE if the HMAC indicated by the `name' exists.
190  *
191  ***/
192 SilcBool silc_hmac_is_supported(const char *name);
193
194 /****f* silccrypt/SilcHMACAPI/silc_hmac_get_supported
195  *
196  * SYNOPSIS
197  *
198  *    char *silc_hmac_get_supported(void);
199  *
200  * DESCRIPTION
201  *
202  *    Returns comma (`,') separated list of registered HMACs.  This is
203  *    used for example when sending supported HMAC list during the SILC
204  *    Key Exchange protocol (SKE).  The caller must free the returned
205  *    pointer.
206  *
207  ***/
208 char *silc_hmac_get_supported(void);
209
210 /****f* silccrypt/SilcHMACAPI/silc_hmac_len
211  *
212  * SYNOPSIS
213  *
214  *    SilcUInt32 silc_hmac_len(SilcHmac hmac);
215  *
216  * DESCRIPTION
217  *
218  *    Returns the length of the MAC that the HMAC will produce.
219  *
220  ***/
221 SilcUInt32 silc_hmac_len(SilcHmac hmac);
222
223 /****f* silccrypt/SilcHMACAPI/silc_hmac_get_hash
224  *
225  * SYNOPSIS
226  *
227  *    SilcHash silc_hmac_get_hash(SilcHmac hmac);
228  *
229  * DESCRIPTION
230  *
231  *    Returns the SilcHash context that has been associated with the
232  *    HMAC context.  The caller must not free the returned context.
233  *
234  ***/
235 SilcHash silc_hmac_get_hash(SilcHmac hmac);
236
237 /****f* silccrypt/SilcHMACAPI/silc_hmac_get_name
238  *
239  * SYNOPSIS
240  *
241  *    const char *silc_hmac_get_name(SilcHmac hmac);
242  *
243  * DESCRIPTION
244  *
245  *    Returns the name of the HMAC context.
246  *
247  ***/
248 const char *silc_hmac_get_name(SilcHmac hmac);
249
250 /****f* silccrypt/SilcHMACAPI/silc_hmac_set_key
251  *
252  * SYNOPSIS
253  *
254  *    void silc_hmac_set_key(SilcHmac hmac, const unsigned char *key,
255  *                           SilcUInt32 key_len);
256  *
257  * DESCRIPTION
258  *
259  *    Sets the key to be used in the HMAC operation.  This must be set
260  *    before calling silc_hmac_make or silc_hmac_final functions.  If
261  *    you do not want to set the key you can still produce a MAC by
262  *    calling the silc_hmac_make_with_key where you give the key as
263  *    argument.  Usually application still wants to set the key.
264  *
265  ***/
266 void silc_hmac_set_key(SilcHmac hmac, const unsigned char *key,
267                        SilcUInt32 key_len);
268
269 /****f* silccrypt/SilcHMACAPI/silc_hmac_make
270  *
271  * SYNOPSIS
272  *
273  *    void silc_hmac_make(SilcHmac hmac, unsigned char *data,
274  *                        SilcUInt32 data_len, unsigned char *return_hash,
275  *                        SilcUInt32 *return_len);
276  *
277  * DESCRIPTION
278  *
279  *    Computes a MAC from a data buffer indicated by the `data' of the
280  *    length of `data_len'.  The returned MAC is copied into the 
281  *    `return_hash' pointer which must be at least the size of the
282  *    value silc_hmac_len returns.  The returned length is still
283  *    returned to `return_len'.
284  *
285  ***/
286 void silc_hmac_make(SilcHmac hmac, unsigned char *data,
287                     SilcUInt32 data_len, unsigned char *return_hash,
288                     SilcUInt32 *return_len);
289
290 /****f* silccrypt/SilcHMACAPI/silc_hmac_make_with_key
291  *
292  * SYNOPSIS
293  *
294  *    void silc_hmac_make_with_key(SilcHmac hmac, unsigned char *data,
295  *                                 SilcUInt32 data_len, 
296  *                                 unsigned char *key, SilcUInt32 key_len,
297  *                                 unsigned char *return_hash,
298  *                                 SilcUInt32 *return_len);
299  *
300  * DESCRIPTION
301  *
302  *    Same as the silc_hmac_make but takes the key for the HMAC as
303  *    argument.  If this is used the key that may have been set by calling
304  *    silc_hmac_set_key is ignored.
305  *
306  ***/
307 void silc_hmac_make_with_key(SilcHmac hmac, unsigned char *data,
308                              SilcUInt32 data_len, 
309                              unsigned char *key, SilcUInt32 key_len,
310                              unsigned char *return_hash,
311                              SilcUInt32 *return_len);
312
313 /****f* silccrypt/SilcHMACAPI/silc_hmac_make_truncated
314  *
315  * SYNOPSIS
316  *
317  *    void silc_hmac_make_truncated(SilcHmac hmac, 
318  *                                  unsigned char *data, 
319  *                                  SilcUInt32 data_len,
320  *                                  SilcUInt32 truncated_len,
321  *                                  unsigned char *return_hash);
322  *
323  * DESCRIPTION
324  *
325  *    Same as the silc_hmac_make except that the returned MAC is
326  *    truncated to the length indicated by the `truncated_len'.  Some
327  *    special applications may need this function.  The `return_hash'
328  *    must be at least the size of `truncated_len'.
329  *
330  * NOTES
331  *
332  *    For security reasons, one should not truncate to less than half
333  *    of the length of the true MAC lenght.  However, since this routine
334  *    may be used to non-critical applications this allows these dangerous
335  *    truncations.
336  *
337  ***/
338 void silc_hmac_make_truncated(SilcHmac hmac, 
339                               unsigned char *data, 
340                               SilcUInt32 data_len,
341                               SilcUInt32 truncated_len,
342                               unsigned char *return_hash);
343
344 /****f* silccrypt/SilcHMACAPI/silc_hmac_init
345  *
346  * SYNOPSIS
347  *
348  *    void silc_hmac_init(SilcHmac hmac);
349  *
350  * DESCRIPTION
351  *
352  *    Sometimes calling the silc_hmac_make might not be the most
353  *    optimal case of doing MACs.  If you have a lot of different data
354  *    that you need to put together for computing a MAC you may either
355  *    put them into a buffer and compute the MAC from the buffer by
356  *    calling the silc_hmac_make, or you can use the silc_hmac_init,
357  *    silc_hmac_update and silc_hmac_final to do the MAC.  This function
358  *    prepares the allocated HMAC context for this kind of MAC 
359  *    computation.  The caller must have been called the function
360  *    silc_hmac_set_key before calling this function.  To add the
361  *    data to be used in the MAC computation call the silc_hmac_update
362  *    function.
363  *
364  ***/
365 void silc_hmac_init(SilcHmac hmac);
366
367 /****f* silccrypt/SilcHMACAPI/silc_hmac_init_with_key
368  *
369  * SYNOPSIS
370  *
371  *    void silc_hmac_init_with_key(SilcHmac hmac, const unsigned char *key,
372  *                                 SilcUInt32 key_len);
373  *
374  * DESCRIPTION
375  *
376  *    Same as silc_hmac_init but initializes with specific key.  The
377  *    key that may have been set with silc_hmac_set_key is ignored.
378  *
379  ***/
380 void silc_hmac_init_with_key(SilcHmac hmac, const unsigned char *key,
381                              SilcUInt32 key_len);
382
383 /****f* silccrypt/SilcHMACAPI/silc_hmac_update
384  *
385  * SYNOPSIS
386  *
387  *    void silc_hmac_update(SilcHmac hmac, const unsigned char *data,
388  *                          SilcUInt32 data_len);
389  *
390  * DESCRIPTION
391  *
392  *    This function may be called to add data to be used in the MAC
393  *    computation.  This can be called multiple times to add data from
394  *    many sources before actually performing the HMAC.  Once you've
395  *    added all the data you need you can call the silc_hmac_final to
396  *    actually produce the MAC.
397  *
398  * EXAMPLE
399  *
400  *    unsigned char mac[20];
401  *    SilcUInt32 mac_len;
402  *
403  *    silc_hmac_init(hmac);
404  *    silc_hmac_update(hmac, data, data_len);
405  *    silc_hmac_update(hmac, more_data, more_data_len);
406  *    silc_hmac_final(hmac, mac, &mac_len);
407  *
408  ***/
409 void silc_hmac_update(SilcHmac hmac, const unsigned char *data,
410                       SilcUInt32 data_len);
411
412 /****f* silccrypt/SilcHMACAPI/silc_hmac_final
413  *
414  * SYNOPSIS
415  *
416  *    void silc_hmac_final(SilcHmac hmac, unsigned char *return_hash,
417  *                         SilcUInt32 *return_len);
418  *
419  * DESCRIPTION
420  *
421  *    This function is used to produce the final MAC from the data
422  *    that has been added to the HMAC context by calling the 
423  *    silc_hmac_update function.  The MAC is copied in to the
424  *    `return_hash' pointer which must be at least the size that
425  *    the silc_hmac_len returns.  The length of the MAC is still
426  *    returned into `return_len'.
427  *
428  ***/
429 void silc_hmac_final(SilcHmac hmac, unsigned char *return_hash,
430                      SilcUInt32 *return_len);
431
432 #endif