OSDN Git Service

Bump version.
[mutilities/MUtilities.git] / src / Hash_Keccak.cpp
index 131f7fd..1b0fb72 100644 (file)
@@ -1,6 +1,6 @@
 ///////////////////////////////////////////////////////////////////////////////
 // MuldeR's Utilities for Qt
-// Copyright (C) 2004-2017 LoRd_MuldeR <MuldeR2@GMX.de>
+// Copyright (C) 2004-2023 LoRd_MuldeR <MuldeR2@GMX.de>
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -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;
 }