VS2013 build fix.

This commit is contained in:
LoRd_MuldeR 2017-05-31 20:31:39 +02:00
parent 02f97e0902
commit aa8a76500e

View File

@ -155,7 +155,7 @@ MUtils::Hash::Keccak *MUtils::Hash::Keccak::create(const HashBits hashBit, const
} }
if (key) if (key)
{ {
keccak->update(((const uint8_t*)key), strlen(key)); keccak->update(((const Internal::KeccakImpl::UINT8*)key), strlen(key));
} }
return keccak; return keccak;
} }