CreateMd5HashFromFilePath
This commit is contained in:
vxunderground
2022-09-10 18:40:21 -05:00
parent eeb574c189
commit cf0c3cc1c2
7 changed files with 164 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
#include "StringManipulation.h"
VOID ByteArrayToCharArrayA(PCHAR Destination, PBYTE Source, DWORD Length)
{
for (DWORD dwX = 0; dwX < Length; dwX++)
{
Destination[dwX] = (BYTE)Source[dwX];
}
}
VOID ByteArrayToCharArrayW(PWCHAR Destination, PBYTE Source, DWORD Length)
{
for (DWORD dwX = 0; dwX < Length; dwX++)
{
Destination[dwX] = (BYTE)Source[dwX];
}
}