1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-23 15:18:16 +00:00

system #include should go to header

This commit is contained in:
jsteube 2016-09-06 09:39:44 +02:00
parent e790ae0f95
commit 0fe3bc5cb9
2 changed files with 2 additions and 2 deletions

View File

@ -5,5 +5,7 @@
#pragma once #pragma once
#include <string.h>
void md5_64 (uint block[16], uint digest[4]); void md5_64 (uint block[16], uint digest[4]);
void md5_complete_no_limit (uint digest[4], uint *plain, uint plain_len); void md5_complete_no_limit (uint digest[4], uint *plain, uint plain_len);

View File

@ -117,8 +117,6 @@ void md5_64 (u32 block[16], u32 digest[4])
// only use this when really, really needed, SLOW // only use this when really, really needed, SLOW
#include <string.h>
void md5_complete_no_limit (u32 digest[4], u32 *plain, u32 plain_len) void md5_complete_no_limit (u32 digest[4], u32 *plain, u32 plain_len)
{ {
u32 a = MD5M_A; u32 a = MD5M_A;