fix include paths ..

This commit is contained in:
Elena.Subbotina
2022-10-11 09:47:22 +03:00
parent 74615f508e
commit b27a36246d
3 changed files with 6 additions and 6 deletions

View File

@ -871,7 +871,7 @@ void ECMAWriteProtect::Generate()
_buf pHashBuf = HashAppend(pSalt, pPassword, data.hashAlgorithm);
for (int i = 0; i < data.spinCount; i++)
for (_UINT32 i = 0; i < data.spinCount; i++)
{
_buf iterator((unsigned char*)&i, 4, false);
pHashBuf = HashAppend(pHashBuf, iterator, data.hashAlgorithm);
@ -913,7 +913,7 @@ bool ECMAWriteProtect::Verify()
_buf pHashTest = HashAppend(pSalt, pPassword, data.hashAlgorithm);
for (int i = 0; i < data.spinCount; i++)
for (_UINT32 i = 0; i < data.spinCount; i++)
{
_buf iterator((unsigned char*)&i, 4, false);
pHashTest = HashAppend(pHashTest, iterator, data.hashAlgorithm);