File: xxHash.h

package info (click to toggle)
jazz2-native 3.5.0-2
  • links: PTS, VCS
  • area: contrib
  • in suites: forky, sid
  • size: 16,912 kB
  • sloc: cpp: 172,557; xml: 113; python: 36; makefile: 5; sh: 2
file content (14 lines) | stat: -rw-r--r-- 378 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "../Common.h"

namespace Death { namespace Cryptography {
//###==##====#=====--==~--~=~- --- -- -  -  -   -

	/** @brief Computes 64-bit digest of given data using **xxHash3** algorithm */
	std::uint64_t xxHash3(const void* data, std::size_t length);

	/** @overload */
	std::uint64_t xxHash3(const void* data, std::size_t length, std::uint64_t seed);

}}