/* * Hashed Message Authentication Code using MD5 (HMAC-MD5) * * hmac_md5 was based on sample code in RFC2104 (thanks guys). * * Adapted to Bacula by Kern E. Sibbald, February MMI. * * Version $Id: hmac.c 4992 2007-06-07 14:46:43Z kerns $ */ /* Bacula® - The Network Backup Solution Copyright (C) 2001-2006 Free Software Foundation Europe e.V. The main author of Bacula is Kern Sibbald, with contributions from many others, a complete list can be found in the file AUTHORS. This program is Free Software; you can redistribute it and/or modify it under the terms of version two of the GNU Lesser General Public License as published by the Free Software Foundation plus additions in the file LICENSE. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Bacula® is a registered trademark of John Walker. The licensor of Bacula is the Free Software Foundation Europe (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich, Switzerland, email:ftf@fsfeurope.org. */ #include "bacula.h" #define PAD_LEN 64 /* PAD length */ #define SIG_LEN MD5HashSize /* MD5 digest length */ void hmac_md5( uint8_t* text, /* pointer to data stream */ int text_len, /* length of data stream */ uint8_t* key, /* pointer to authentication key */ int key_len, /* length of authentication key */ uint8_t *hmac) /* returned hmac-md5 */ { MD5Context md5c; uint8_t k_ipad[PAD_LEN]; /* inner padding - key XORd with ipad */ uint8_t k_opad[PAD_LEN]; /* outer padding - key XORd with opad */ uint8_t keysig[SIG_LEN]; int i; /* if key is longer than PAD length, reset it to key=MD5(key) */ if (key_len > PAD_LEN) { MD5Context md5key; MD5Init(&md5key); MD5Update(&md5key, key, key_len); MD5Final(keysig, &md5key); key = keysig; key_len = SIG_LEN; } /* * the HMAC_MD5 transform looks like: * * MD5(Key XOR opad, MD5(Key XOR ipad, text)) * * where Key is an n byte key * ipad is the byte 0x36 repeated 64 times * opad is the byte 0x5c repeated 64 times * and text is the data being protected */ /* Zero pads and store key */ memset(k_ipad, 0, PAD_LEN); memcpy(k_ipad, key, key_len); memcpy(k_opad, k_ipad, PAD_LEN); /* XOR key with ipad and opad values */ for (i=0; i