2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-20 03:11:52 +00:00
|
|
|
#include <cstddef>
|
2021-12-10 20:47:03 +00:00
|
|
|
#include <string_view>
|
2014-02-20 03:11:52 +00:00
|
|
|
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2018-05-16 19:22:13 +00:00
|
|
|
namespace Common
|
|
|
|
{
|
2008-09-17 23:25:35 +00:00
|
|
|
u32 HashFletcher(const u8* data_u8, size_t length); // FAST. Length & 1 == 0.
|
2008-07-12 17:40:22 +00:00
|
|
|
u32 HashAdler32(const u8* data, size_t len); // Fairly accurate, slightly slower
|
2020-04-09 01:19:37 +00:00
|
|
|
u32 HashEctor(const u8* ptr, size_t length); // JUNK. DO NOT USE FOR NEW THINGS
|
2016-01-21 20:16:51 +00:00
|
|
|
u64 GetHash64(const u8* src, u32 len, u32 samples);
|
2014-12-22 21:35:08 +00:00
|
|
|
void SetHash64Function();
|
2021-12-10 20:47:03 +00:00
|
|
|
|
|
|
|
u32 ComputeCRC32(std::string_view data);
|
2021-12-10 21:34:40 +00:00
|
|
|
u32 ComputeCRC32(const u8* ptr, u32 length);
|
|
|
|
u32 StartCRC32();
|
|
|
|
u32 UpdateCRC32(u32 crc, const u8* ptr, u32 length);
|
2018-05-16 19:22:13 +00:00
|
|
|
} // namespace Common
|