共用方式為


XxHash128.Hash 方法

定義

多載

Hash(Byte[])

計算所提供 source 數據的 XXH128 哈希。

Hash(Byte[], Int64)

使用提供的種子計算所提供數據的 XXH128 哈希。

Hash(ReadOnlySpan<Byte>, Int64)

使用選擇性提供的seed計算所提供source數據的 XXH128 哈希。

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

使用選擇性提供的 ,將所提供 source 資料的 XXH128 哈希計算至提供的 destinationseed

Hash(Byte[])

來源:
XxHash128.cs
來源:
XxHash128.cs

計算所提供 source 數據的 XXH128 哈希。

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[]

所提供數據的 XXH128 128 位哈希碼。

例外狀況

sourcenull

適用於

Hash(Byte[], Int64)

來源:
XxHash128.cs
來源:
XxHash128.cs

使用提供的種子計算所提供數據的 XXH128 哈希。

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[]

所提供數據的 XXH128 128 位哈希碼。

例外狀況

sourcenull

適用於

Hash(ReadOnlySpan<Byte>, Int64)

來源:
XxHash128.cs
來源:
XxHash128.cs

使用選擇性提供的seed計算所提供source數據的 XXH128 哈希。

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[]

所提供數據的 XXH128 128 位哈希碼。

適用於

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

來源:
XxHash128.cs
來源:
XxHash128.cs

使用選擇性提供的 ,將所提供 source 資料的 XXH128 哈希計算至提供的 destinationseed

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>

接收計算 128 位哈希碼的緩衝區。

seed
Int64

這個哈希計算的種子值。 預設值是零。

傳回

寫入至 destination 的位元組數。

例外狀況

destination 比這個哈希演算法所產生的位元組數目短 (16 個字節) 。

適用於