comparison libpurple/ciphers/md4.c @ 31668:2d3c1197f930

included string.h in cipher.h since almost all of the ciphers use it.
author Gary Kramlich <grim@reaperworld.com>
date Mon, 14 Feb 2011 06:54:12 +0000
parents a1a0936d10c3
children ca94413ccd0e
comparison
equal deleted inserted replaced
31667:076d62344ede 31668:2d3c1197f930
32 * You should have received a copy of the GNU General Public License 32 * You should have received a copy of the GNU General Public License
33 * along with this program; if not, write to the Free Software 33 * along with this program; if not, write to the Free Software
34 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA 34 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
35 */ 35 */
36 #include <cipher.h> 36 #include <cipher.h>
37 #include <string.h>
38 37
39 #define MD4_DIGEST_SIZE 16 38 #define MD4_DIGEST_SIZE 16
40 #define MD4_HMAC_BLOCK_SIZE 64 39 #define MD4_HMAC_BLOCK_SIZE 64
41 #define MD4_BLOCK_WORDS 16 40 #define MD4_BLOCK_WORDS 16
42 #define MD4_HASH_WORDS 4 41 #define MD4_HASH_WORDS 4