XxHash64.Hash 方法

定义

重载

Hash(Byte[])

计算所提供的数据的 XxHash64 哈希。

Hash(Byte[], Int64)

使用提供的种子计算所提供数据的 XxHash64 哈希。

Hash(ReadOnlySpan<Byte>, Int64)

计算所提供的数据的 XxHash64 哈希。

Hash(ReadOnlySpan<Byte>, Span<Byte>, Int64)

将所提供的数据的 XxHash64 哈希计算到提供的目标中。

Hash(Byte[])

Source:
XxHash64.cs
Source:
XxHash64.cs
Source:
XxHash64.cs

计算所提供的数据的 XxHash64 哈希。

public:
 static cli::array <System::Byte> ^ Hash(cli::array <System::Byte> ^ source);
public static byte[] Hash (byte[] source);
static member Hash : byte[] -> byte[]
Public Shared Function Hash (source As Byte()) As Byte()

参数

source
Byte[]

要哈希的数据。

返回

Byte[]

所提供数据的 XxHash64 哈希。

例外

sourcenull

适用于

Hash(Byte[], Int64)

Source:
XxHash64.cs
Source:
XxHash64.cs
Source:
XxHash64.cs

使用提供的种子计算所提供数据的 XxHash64 哈希。

public:
 static cli::array <System::Byte> ^ Hash(cli::array <System::Byte> ^ source, long seed);
public static byte[] Hash (byte[] source, long seed);
static member Hash : byte[] * int64 -> byte[]
Public Shared Function Hash (source As Byte(), seed As Long) As Byte()

参数

source
Byte[]

要哈希的数据。

seed
Int64

此哈希计算的种子值。

返回

Byte[]

所提供数据的 XxHash64 哈希。

例外

sourcenull

适用于

Hash(ReadOnlySpan<Byte>, Int64)

Source:
XxHash64.cs
Source:
XxHash64.cs
Source:
XxHash64.cs

计算所提供的数据的 XxHash64 哈希。

public static byte[] Hash (ReadOnlySpan<byte> source, long seed = 0);
static member Hash : ReadOnlySpan<byte> * int64 -> byte[]
Public Shared Function Hash (source As ReadOnlySpan(Of Byte), Optional seed As Long = 0) As Byte()

参数

source
ReadOnlySpan<Byte>

要哈希的数据。

seed
Int64

此哈希计算的种子值。 默认值为零。

返回

Byte[]

所提供数据的 XxHash64 哈希。

适用于

Hash(ReadOnlySpan<Byte>, Span<Byte>, Int64)

Source:
XxHash64.cs
Source:
XxHash64.cs
Source:
XxHash64.cs

将所提供的数据的 XxHash64 哈希计算到提供的目标中。

public static int Hash (ReadOnlySpan<byte> source, Span<byte> destination, long seed = 0);
static member Hash : ReadOnlySpan<byte> * Span<byte> * int64 -> int
Public Shared Function Hash (source As ReadOnlySpan(Of Byte), destination As Span(Of Byte), Optional seed As Long = 0) As Integer

参数

source
ReadOnlySpan<Byte>

要哈希的数据。

destination
Span<Byte>

接收计算的哈希值的缓冲区。

seed
Int64

此哈希计算的种子值。 默认值为零。

返回

写入到 destination 的字节数。

适用于