Added stacktrace support with --enable-stack-trace option.
[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  *    bool 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 bool silc_hmac_register(const SilcHmacObject *hmac);
101
102 /****f* silccrypt/SilcHMACAPI/silc_hmac_unregister
103  *
104  * SYNOPSIS
105  *
106  *    bool 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 bool silc_hmac_unregister(SilcHmacObject *hmac);
116
117 /****f* silccrypt/SilcHMACAPI/silc_hmac_register_default
118  *
119  * SYNOPSIS
120  *
121  *    bool 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 bool silc_hmac_register_default(void);
135
136 /****f* silccrypt/SilcHMACAPI/silc_hmac_unregister_all
137  *
138  * SYNOPSIS
139  *
140  *    bool silc_hmac_unregister_all(void);
141  *
142  * DESCRIPTION
143  *
144  *    Unregisters all registered HMACs.
145  *
146  ***/
147 bool silc_hmac_unregister_all(void);
148
149 /****f* silccrypt/SilcHMACAPI/silc_hmac_alloc
150  *
151  * SYNOPSIS
152  *
153  *    bool silc_hmac_alloc(char *name, SilcHash hash, SilcHmac *new_hmac);
154  *
155  * DESCRIPTION
156  *
157  *    Allocates a new SilcHmac object of name of `name'.  The `hash' may
158  *    be provided as argument.  If provided it is used as the hash function
159  *    of the HMAC.  If it is NULL then the hash function is allocated and
160  *    the name of the hash algorithm is derived from the `name'.  Returns
161  *    FALSE if such HMAC does not exist.
162  *
163  ***/
164 bool silc_hmac_alloc(char *name, SilcHash hash, SilcHmac *new_hmac);
165
166 /****f* silccrypt/SilcHMACAPI/silc_hmac_free
167  *
168  * SYNOPSIS
169  *
170  *    void silc_hmac_free(SilcHmac hmac);
171  *
172  * DESCRIPTION
173  *
174  *    Frees the allocated HMAC context.  The key that may have been set
175  *    with the silc_hmac_set_key is also destroyed.
176  *
177  ***/
178 void silc_hmac_free(SilcHmac hmac);
179
180 /****f* silccrypt/SilcHMACAPI/silc_hmac_is_supported
181  *
182  * SYNOPSIS
183  *
184  *    bool silc_hmac_is_supported(const char *name);
185  *
186  * DESCRIPTION
187  *
188  *    Returns TRUE if the HMAC indicated by the `name' exists.
189  *
190  ***/
191 bool silc_hmac_is_supported(const char *name);
192
193 /****f* silccrypt/SilcHMACAPI/silc_hmac_get_supported
194  *
195  * SYNOPSIS
196  *
197  *    char *silc_hmac_get_supported(void);
198  *
199  * DESCRIPTION
200  *
201  *    Returns comma (`,') separated list of registered HMACs.  This is
202  *    used for example when sending supported HMAC list during the SILC
203  *    Key Exchange protocol (SKE).  The caller must free the returned
204  *    pointer.
205  *
206  ***/
207 char *silc_hmac_get_supported(void);
208
209 /****f* silccrypt/SilcHMACAPI/silc_hmac_len
210  *
211  * SYNOPSIS
212  *
213  *    SilcUInt32 silc_hmac_len(SilcHmac hmac);
214  *
215  * DESCRIPTION
216  *
217  *    Returns the length of the MAC that the HMAC will produce.
218  *
219  ***/
220 SilcUInt32 silc_hmac_len(SilcHmac hmac);
221
222 /****f* silccrypt/SilcHMACAPI/silc_hmac_get_hash
223  *
224  * SYNOPSIS
225  *
226  *    SilcHash silc_hmac_get_hash(SilcHmac hmac);
227  *
228  * DESCRIPTION
229  *
230  *    Returns the SilcHash context that has been associated with the
231  *    HMAC context.  The caller must not free the returned context.
232  *
233  ***/
234 SilcHash silc_hmac_get_hash(SilcHmac hmac);
235
236 /****f* silccrypt/SilcHMACAPI/silc_hmac_get_name
237  *
238  * SYNOPSIS
239  *
240  *    const char *silc_hmac_get_name(SilcHmac hmac);
241  *
242  * DESCRIPTION
243  *
244  *    Returns the name of the HMAC context.
245  *
246  ***/
247 const char *silc_hmac_get_name(SilcHmac hmac);
248
249 /****f* silccrypt/SilcHMACAPI/silc_hmac_set_key
250  *
251  * SYNOPSIS
252  *
253  *    void silc_hmac_set_key(SilcHmac hmac, const unsigned char *key,
254  *                           SilcUInt32 key_len);
255  *
256  * DESCRIPTION
257  *
258  *    Sets the key to be used in the HMAC operation.  This must be set
259  *    before calling silc_hmac_make or silc_hmac_final functions.  If
260  *    you do not want to set the key you can still produce a MAC by
261  *    calling the silc_hmac_make_with_key where you give the key as
262  *    argument.  Usually application still wants to set the key.
263  *
264  ***/
265 void silc_hmac_set_key(SilcHmac hmac, const unsigned char *key,
266                        SilcUInt32 key_len);
267
268 /****f* silccrypt/SilcHMACAPI/silc_hmac_make
269  *
270  * SYNOPSIS
271  *
272  *    void silc_hmac_make(SilcHmac hmac, unsigned char *data,
273  *                        SilcUInt32 data_len, unsigned char *return_hash,
274  *                        SilcUInt32 *return_len);
275  *
276  * DESCRIPTION
277  *
278  *    Computes a MAC from a data buffer indicated by the `data' of the
279  *    length of `data_len'.  The returned MAC is copied into the 
280  *    `return_hash' pointer which must be at least the size of the
281  *    value silc_hmac_len returns.  The returned length is still
282  *    returned to `return_len'.
283  *
284  ***/
285 void silc_hmac_make(SilcHmac hmac, unsigned char *data,
286                     SilcUInt32 data_len, unsigned char *return_hash,
287                     SilcUInt32 *return_len);
288
289 /****f* silccrypt/SilcHMACAPI/silc_hmac_make_with_key
290  *
291  * SYNOPSIS
292  *
293  *    void silc_hmac_make_with_key(SilcHmac hmac, unsigned char *data,
294  *                                 SilcUInt32 data_len, 
295  *                                 unsigned char *key, SilcUInt32 key_len,
296  *                                 unsigned char *return_hash,
297  *                                 SilcUInt32 *return_len);
298  *
299  * DESCRIPTION
300  *
301  *    Same as the silc_hmac_make but takes the key for the HMAC as
302  *    argument.  If this is used the key that may have been set by calling
303  *    silc_hmac_set_key is ignored.
304  *
305  ***/
306 void silc_hmac_make_with_key(SilcHmac hmac, unsigned char *data,
307                              SilcUInt32 data_len, 
308                              unsigned char *key, SilcUInt32 key_len,
309                              unsigned char *return_hash,
310                              SilcUInt32 *return_len);
311
312 /****f* silccrypt/SilcHMACAPI/silc_hmac_make_truncated
313  *
314  * SYNOPSIS
315  *
316  *    void silc_hmac_make_truncated(SilcHmac hmac, 
317  *                                  unsigned char *data, 
318  *                                  SilcUInt32 data_len,
319  *                                  SilcUInt32 truncated_len,
320  *                                  unsigned char *return_hash);
321  *
322  * DESCRIPTION
323  *
324  *    Same as the silc_hmac_make except that the returned MAC is
325  *    truncated to the length indicated by the `truncated_len'.  Some
326  *    special applications may need this function.  The `return_hash'
327  *    must be at least the size of `truncated_len'.
328  *
329  * NOTES
330  *
331  *    For security reasons, one should not truncate to less than half
332  *    of the length of the true MAC lenght.  However, since this routine
333  *    may be used to non-critical applications this allows these dangerous
334  *    truncations.
335  *
336  ***/
337 void silc_hmac_make_truncated(SilcHmac hmac, 
338                               unsigned char *data, 
339                               SilcUInt32 data_len,
340                               SilcUInt32 truncated_len,
341                               unsigned char *return_hash);
342
343 /****f* silccrypt/SilcHMACAPI/silc_hmac_init
344  *
345  * SYNOPSIS
346  *
347  *    void silc_hmac_init(SilcHmac hmac);
348  *
349  * DESCRIPTION
350  *
351  *    Sometimes calling the silc_hmac_make might not be the most
352  *    optimal case of doing MACs.  If you have a lot of different data
353  *    that you need to put together for computing a MAC you may either
354  *    put them into a buffer and compute the MAC from the buffer by
355  *    calling the silc_hmac_make, or you can use the silc_hmac_init,
356  *    silc_hmac_update and silc_hmac_final to do the MAC.  This function
357  *    prepares the allocated HMAC context for this kind of MAC 
358  *    computation.  The caller must have been called the function
359  *    silc_hmac_set_key before calling this function.  To add the
360  *    data to be used in the MAC computation call the silc_hmac_update
361  *    function.
362  *
363  ***/
364 void silc_hmac_init(SilcHmac hmac);
365
366 /****f* silccrypt/SilcHMACAPI/silc_hmac_init_with_key
367  *
368  * SYNOPSIS
369  *
370  *    void silc_hmac_init_with_key(SilcHmac hmac, const unsigned char *key,
371  *                                 SilcUInt32 key_len);
372  *
373  * DESCRIPTION
374  *
375  *    Same as silc_hmac_init but initializes with specific key.  The
376  *    key that may have been set with silc_hmac_set_key is ignored.
377  *
378  ***/
379 void silc_hmac_init_with_key(SilcHmac hmac, const unsigned char *key,
380                              SilcUInt32 key_len);
381
382 /****f* silccrypt/SilcHMACAPI/silc_hmac_update
383  *
384  * SYNOPSIS
385  *
386  *    void silc_hmac_update(SilcHmac hmac, const unsigned char *data,
387  *                          SilcUInt32 data_len);
388  *
389  * DESCRIPTION
390  *
391  *    This function may be called to add data to be used in the MAC
392  *    computation.  This can be called multiple times to add data from
393  *    many sources before actually performing the HMAC.  Once you've
394  *    added all the data you need you can call the silc_hmac_final to
395  *    actually produce the MAC.
396  *
397  * EXAMPLE
398  *
399  *    unsigned char mac[20];
400  *    SilcUInt32 mac_len;
401  *
402  *    silc_hmac_init(hmac);
403  *    silc_hmac_update(hmac, data, data_len);
404  *    silc_hmac_update(hmac, more_data, more_data_len);
405  *    silc_hmac_final(hmac, mac, &mac_len);
406  *
407  ***/
408 void silc_hmac_update(SilcHmac hmac, const unsigned char *data,
409                       SilcUInt32 data_len);
410
411 /****f* silccrypt/SilcHMACAPI/silc_hmac_final
412  *
413  * SYNOPSIS
414  *
415  *    void silc_hmac_final(SilcHmac hmac, unsigned char *return_hash,
416  *                         SilcUInt32 *return_len);
417  *
418  * DESCRIPTION
419  *
420  *    This function is used to produce the final MAC from the data
421  *    that has been added to the HMAC context by calling the 
422  *    silc_hmac_update function.  The MAC is copied in to the
423  *    `return_hash' pointer which must be at least the size that
424  *    the silc_hmac_len returns.  The length of the MAC is still
425  *    returned into `return_len'.
426  *
427  ***/
428 void silc_hmac_final(SilcHmac hmac, unsigned char *return_hash,
429                      SilcUInt32 *return_len);
430
431 #endif