Core: Add CRC64 and regenerate global headers

This commit is contained in:
Jérôme Leclercq
2017-08-15 12:32:19 +02:00
parent 52e5ab8445
commit 5531e81e65
6 changed files with 161 additions and 2 deletions

View File

@@ -5,6 +5,7 @@
#include <Nazara/Core/AbstractHash.hpp>
#include <Nazara/Core/Error.hpp>
#include <Nazara/Core/Hash/CRC32.hpp>
#include <Nazara/Core/Hash/CRC64.hpp>
#include <Nazara/Core/Hash/Fletcher16.hpp>
#include <Nazara/Core/Hash/MD5.hpp>
#include <Nazara/Core/Hash/SHA1.hpp>
@@ -48,6 +49,9 @@ namespace Nz
case HashType_CRC32:
return std::make_unique<HashCRC32>();
case HashType_CRC64:
return std::make_unique<HashCRC64>();
case HashType_MD5:
return std::make_unique<HashMD5>();