1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-27 02:18:21 +00:00
This commit is contained in:
jsteube 2017-02-15 12:36:09 +01:00
commit b4bfade4ec

View File

@ -167,11 +167,11 @@ void md5_complete_no_limit (u32 digest[4], u32 *plain, u32 plain_len)
* final block * final block
*/ */
// set 0x80 if neeeded // set 0x80 if needed
if (cur_len >= 0) if (cur_len >= 0)
{ {
if (cur_len != block_total_len) if (copy_len < block_total_len)
{ {
block_ptr[copy_len] = (char) 0x80; block_ptr[copy_len] = (char) 0x80;
} }