comparison libpurple/ciphers/hmac.c @ 31673:45f318d865ac

hmac.c needs to include libpurple/util.h
author Gary Kramlich <grim@reaperworld.com>
date Thu, 17 Feb 2011 05:03:58 +0000
parents 2d3c1197f930
children ca94413ccd0e
comparison
equal deleted inserted replaced
31672:42147e198008 31673:45f318d865ac
18 * You should have received a copy of the GNU General Public License 18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software 19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
21 */ 21 */
22 #include <cipher.h> 22 #include <cipher.h>
23
24 #include <util.h>
23 25
24 struct HMAC_Context { 26 struct HMAC_Context {
25 PurpleCipherContext *hash; 27 PurpleCipherContext *hash;
26 char *name; 28 char *name;
27 int blocksize; 29 int blocksize;