OSDN Git Service

Added function to detect the type of a drive, including detecting of "fast seeking...
[mutilities/MUtilities.git] / src / Hash_Keccak.cpp
index c08f2c1..5ca74ee 100644 (file)
@@ -1,6 +1,6 @@
 ///////////////////////////////////////////////////////////////////////////////
 // MuldeR's Utilities for Qt
-// Copyright (C) 2004-2016 LoRd_MuldeR <MuldeR2@GMX.de>
+// Copyright (C) 2004-2017 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;
 }