Fix Md5.h used in Md5.cpp

This commit is contained in:
sunwen
2023-12-15 15:46:00 +08:00
parent 6615518953
commit 1d7777516d

View File

@@ -1,4 +1,4 @@
#include "md5.h"
#include "Md5/Md5.h"
#include <memory.h>
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;
}
}