6344
|
1 /* hmac-md5.c -- hashed message authentication codes |
|
2 Copyright (C) 2005 Free Software Foundation, Inc. |
|
3 |
|
4 This program is free software; you can redistribute it and/or modify |
|
5 it under the terms of the GNU General Public License as published by |
|
6 the Free Software Foundation; either version 2, or (at your option) |
|
7 any later version. |
|
8 |
|
9 This program is distributed in the hope that it will be useful, |
|
10 but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 GNU General Public License for more details. |
|
13 |
|
14 You should have received a copy of the GNU General Public License |
|
15 along with this program; if not, write to the Free Software Foundation, |
|
16 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
|
17 |
|
18 /* Written by Simon Josefsson. */ |
|
19 |
|
20 #ifdef HAVE_CONFIG_H |
|
21 # include <config.h> |
|
22 #endif |
|
23 |
|
24 #include "hmac.h" |
|
25 |
|
26 #include "md5.h" |
|
27 |
|
28 #include <string.h> |
|
29 |
|
30 #define IPAD 0x36 |
|
31 #define OPAD 0x5c |
|
32 |
|
33 int |
|
34 hmac_md5 (const void *key, size_t keylen, |
|
35 const void *in, size_t inlen, void *resbuf) |
|
36 { |
|
37 struct md5_ctx inner; |
|
38 struct md5_ctx outer; |
|
39 char optkeybuf[16]; |
|
40 char block[64]; |
|
41 char innerhash[16]; |
|
42 |
|
43 if (keylen > 64) |
|
44 { |
|
45 struct md5_ctx keyhash; |
|
46 |
|
47 md5_init_ctx (&keyhash); |
|
48 md5_process_bytes (key, keylen, &keyhash); |
|
49 md5_finish_ctx (&keyhash, optkeybuf); |
|
50 |
|
51 key = optkeybuf; |
|
52 keylen = 16; |
|
53 } |
|
54 |
|
55 md5_init_ctx (&inner); |
|
56 |
|
57 memset (block, IPAD, sizeof (block)); |
|
58 memxor (block, key, keylen); |
|
59 |
|
60 md5_process_block (block, 64, &inner); |
|
61 md5_process_bytes (in, inlen, &inner); |
|
62 |
|
63 md5_finish_ctx (&inner, innerhash); |
|
64 |
|
65 md5_init_ctx (&outer); |
|
66 |
|
67 memset (block, OPAD, sizeof (block)); |
|
68 memxor (block, key, keylen); |
|
69 |
|
70 md5_process_block (block, 64, &outer); |
|
71 md5_process_bytes (innerhash, 16, &outer); |
|
72 |
|
73 md5_finish_ctx (&outer, resbuf); |
|
74 |
|
75 return 0; |
|
76 } |