/*****************************************************************************
 *
 * HMAC MD5 engine definitions.
 * Copyright (C) 2001  Bart Trojanowski <bart@jukie.net>.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.  See <http://www.fsf.org/copyleft/gpl.txt>.
 * 
 * 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 General Public License
 * for more details.
 *
 *****************************************************************************/
#ifndef DIGEST_HMAC_MD5_H
#define DIGEST_HMAC_MD5_H

#include <linux/types.h>

#define HMAC_MD5_KEY_SZ     16	
#define HMAC_MD5_HASH_SZ    32

struct digest_hmac_md5_context_definition {
  
  u8 *key_ptr;
  u8 key_len; 
  
  /* anyting else? */
};



#endif /* PROTO_ESP_H */

/*****************************************************************************
 *
 * $Log: digest-hmac_md5.h,v $
 * Revision 1.2  2001/06/16 19:52:39  bart
 * cleaned up defines
 *
 * Revision 1.1  2001/06/08 23:29:10  bart
 * major refining
 *
 * Revision 1.1  2001/05/29 01:48:51  bart
 * renamed digest-hmacmd5 to digest-md5hmac; a bit easier to read
 *
 *
 *****************************************************************************/

