22 lines
756 B
C
22 lines
756 B
C
// SPDX-FileCopyrightText: 2015 Andrey Jivsov <crypto@brainhub.org>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// MurmurHash3 was written by Austin Appleby, and is placed in the public
|
|
// domain. The author hereby disclaims copyright to this source code.
|
|
|
|
#ifndef _MURMURHASH3_H_
|
|
#define _MURMURHASH3_H_
|
|
|
|
#include <rz_types.h>
|
|
|
|
#define MURMUR3_32_DIGEST_LENGTH 4
|
|
#define MURMUR3_128_DIGEST_LENGTH 16
|
|
|
|
#define ROTL32_Murmur3(x, y) rotl32(x, y)
|
|
#define ROTL64_Murmur3(x, y) rotl64(x, y)
|
|
|
|
RZ_IPI void MurmurHash3_x86_32(const void *key, RzRef len, size_t seed, void *out);
|
|
RZ_IPI void MurmurHash3_x86_128(const void *key, RzRef len, size_t seed, void *out);
|
|
RZ_IPI void MurmurHash3_x64_128(const void *key, RzRef len, ut64 seed, void *out);
|
|
|
|
#endif // _MURMURHASH3_H_
|