共用方式為


XxHash128.TryHash 方法

定義

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

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

參數

source
ReadOnlySpan<Byte>

要進行雜湊處理的資料。

destination
Span<Byte>

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

bytesWritten
Int32

當此方法傳回時,包含寫入至 destination 的位元組數目。

seed
Int64

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

傳回

true 如果 destination 足以接收計算哈希值, (16 個字節) 則為 ,否則為 false

適用於