Kannel: Open Source WAP and SMS gateway  svn-r5335
test_hmac.c
Go to the documentation of this file.
1 /* ====================================================================
2  * The Kannel Software License, Version 1.0
3  *
4  * Copyright (c) 2001-2018 Kannel Group
5  * Copyright (c) 1998-2001 WapIT Ltd.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer.
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  * notice, this list of conditions and the following disclaimer in
17  * the documentation and/or other materials provided with the
18  * distribution.
19  *
20  * 3. The end-user documentation included with the redistribution,
21  * if any, must include the following acknowledgment:
22  * "This product includes software developed by the
23  * Kannel Group (http://www.kannel.org/)."
24  * Alternately, this acknowledgment may appear in the software itself,
25  * if and wherever such third-party acknowledgments normally appear.
26  *
27  * 4. The names "Kannel" and "Kannel Group" must not be used to
28  * endorse or promote products derived from this software without
29  * prior written permission. For written permission, please
30  * contact org@kannel.org.
31  *
32  * 5. Products derived from this software may not be called "Kannel",
33  * nor may "Kannel" appear in their name, without prior written
34  * permission of the Kannel Group.
35  *
36  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
37  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
38  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
39  * DISCLAIMED. IN NO EVENT SHALL THE KANNEL GROUP OR ITS CONTRIBUTORS
40  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
41  * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
42  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
43  * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
44  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
45  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
46  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
47  * ====================================================================
48  *
49  * This software consists of voluntary contributions made by many
50  * individuals on behalf of the Kannel Group. For more information on
51  * the Kannel Group, please see <http://www.kannel.org/>.
52  *
53  * Portions of this software are based upon software originally written at
54  * WapIT Ltd., Helsinki, Finland for the Kannel project.
55  */
56 
57 /*
58  * test_hmac.c - calculates the HMAC-SHA1 hash value
59  *
60  * This algorithm is used in the OTA Prov architecture for bootstrap
61  * securtiy by means of a shared secret.
62  *
63  * References:
64  * - WAP-184-PROVBOOT-20010314a.pdf (Provisioning Bootstrap), WAP Forum
65  * - HMAC: Keyed-Hashing for Message Authentication”, Krawczyk, H.,
66  * Bellare, M., and Canetti, R., RFC 2104
67  *
68  * Stipe Tolj <stolj@wapme.de>
69  */
70 
71 #include <string.h>
72 #include <unistd.h>
73 #include <signal.h>
74 
75 #include "gwlib/gwlib.h"
76 
77 #ifdef HAVE_LIBSSL
78 #include <openssl/hmac.h>
79 #endif
80 
81 #ifndef EVP_MAX_MD_SIZE
82 #define EVP_MAX_MD_SIZE 1
83 #endif
84 
85 int main(int argc, char **argv)
86 {
87  Octstr *data, *filename, *mac, *key;
88  unsigned char macbuf[EVP_MAX_MD_SIZE], *p;
89  int mac_len;
90 #ifdef HAVE_LIBSSL
91  HMAC_CTX *ctx;
92 #endif
93 
94  gwlib_init();
95 
96  get_and_set_debugs(argc, argv, NULL);
97 
98  if (argc < 3)
99  panic(0, "Syntax: %s <key> <file>\n", argv[0]);
100 
101  key = octstr_create(argv[1]);
102  filename = octstr_create(argv[2]);
104 
105  if (data == NULL)
106  panic(0, "Cannot read file.");
107 
108  debug("",0,"Dumping file `%s':", octstr_get_cstr(filename));
109  octstr_dump(data, 0);
110 
111 #ifdef HAVE_LIBSSL
112 #if OPENSSL_VERSION_NUMBER < 0x10100000L
113  HMAC_Init(ctx, octstr_get_cstr(key), octstr_len(key), EVP_sha1());
114 #else
115  ctx = HMAC_CTX_new();
116 #endif
117  p = HMAC(EVP_sha1(), octstr_get_cstr(key), octstr_len(key),
118  octstr_get_cstr(data), octstr_len(data),
119  macbuf, &mac_len);
120 #if OPENSSL_VERSION_NUMBER < 0x10100000L
121  HMAC_cleanup(ctx);
122 #else
123  HMAC_CTX_free(ctx);
124 #endif
125 #else
126  macbuf[0] = 0;
127  mac_len = 0;
128  p = macbuf;
129  warning(0, "No SSL support. Can't calculate HMAC value.");
130 #endif
131 
132  mac = octstr_create_from_data(p, mac_len);
133  octstr_binary_to_hex(mac, 0);
134 
135  debug("",0,"HMAC of file `%s' and key `%s' is:",
137  octstr_dump(mac, 0);
138 
139  octstr_destroy(data);
140  octstr_destroy(mac);
141  octstr_destroy(key);
142  gwlib_shutdown();
143  return 0;
144 }
int main(int argc, char **argv)
Definition: test_hmac.c:85
#define octstr_get_cstr(ostr)
Definition: octstr.h:233
void octstr_binary_to_hex(Octstr *ostr, int uppercase)
Definition: octstr.c:465
#define octstr_dump(ostr, level,...)
Definition: octstr.h:564
void warning(int err, const char *fmt,...)
Definition: log.c:660
void octstr_destroy(Octstr *ostr)
Definition: octstr.c:324
char filename[FILENAME_MAX+1]
Definition: log.c:171
#define octstr_create(cstr)
Definition: octstr.h:125
Octstr * octstr_read_file(const char *filename)
Definition: octstr.c:1548
long octstr_len(const Octstr *ostr)
Definition: octstr.c:342
Definition: octstr.c:118
void debug(const char *place, int err, const char *fmt,...)
Definition: log.c:726
#define panic
Definition: log.h:87
void gwlib_shutdown(void)
Definition: gwlib.c:94
#define EVP_MAX_MD_SIZE
Definition: test_hmac.c:82
void gwlib_init(void)
Definition: gwlib.c:78
int get_and_set_debugs(int argc, char **argv, int(*find_own)(int index, int argc, char **argv))
Definition: utils.c:626
#define octstr_create_from_data(data, len)
Definition: octstr.h:134
See file LICENSE for details about the license agreement for using, modifying, copying or deriving work from this software.