HMAC MD5 bug fix to ensure to set the MD5 block length to 64

This commit is contained in:
Michael Rash 2013-03-10 21:59:39 -04:00
parent bd2af22691
commit 343bd449d4

View File

@ -37,8 +37,8 @@
#include "common.h"
#define MD5_BLOCK_LEN 64
#define MD5_DIGEST_LEN 16
#define MD5_BLOCK_LEN MD5_DIGEST_LEN
#define MD5_DIGEST_STR_LEN (MD5_DIGEST_LEN * 2 + 1)
#define MD5_B64_LEN 22