diff --git a/src/Hash_Keccak.cpp b/src/Hash_Keccak.cpp index 131f7fd..5ca74ee 100644 --- a/src/Hash_Keccak.cpp +++ b/src/Hash_Keccak.cpp @@ -155,7 +155,7 @@ MUtils::Hash::Keccak *MUtils::Hash::Keccak::create(const HashBits hashBit, const } if (key) { - keccak->update(((const uint8_t*)key), strlen(key)); + keccak->update(((const Internal::KeccakImpl::UINT8*)key), strlen(key)); } return keccak; }