From 1d7777516d8e39728f848a7372130158c2eda47c Mon Sep 17 00:00:00 2001 From: sunwen Date: Fri, 15 Dec 2023 15:46:00 +0800 Subject: [PATCH] Fix Md5.h used in Md5.cpp --- src/Md5/Md5.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Md5/Md5.cpp b/src/Md5/Md5.cpp index 6d1eae9..08c17d6 100644 --- a/src/Md5/Md5.cpp +++ b/src/Md5/Md5.cpp @@ -1,4 +1,4 @@ -#include "md5.h" +#include "Md5/Md5.h" #include unsigned char PADDING[] = @@ -179,4 +179,4 @@ void MD5Transform(unsigned int state[4], unsigned char block[64]) state[1] += b; state[2] += c; state[3] += d; -} \ No newline at end of file +}