共用方式為


NonCryptographicHashAlgorithm.GetCurrentHashCore(Span<Byte>) 方法

定義

在衍生類別中覆寫時,將計算哈希值寫入至 destination ,而不需修改累積狀態。

protected:
 abstract void GetCurrentHashCore(Span<System::Byte> destination);
protected abstract void GetCurrentHashCore (Span<byte> destination);
abstract member GetCurrentHashCore : Span<byte> -> unit
Protected MustOverride Sub GetCurrentHashCore (destination As Span(Of Byte))

參數

destination
Span<Byte>

接收計算哈希值的緩衝區。

備註

這個方法的實作必須將完全 HashLengthInBytes 位元組 destination寫入 。 請勿假設緩衝區已初始化為零。

類別 NonCryptographicHashAlgorithm 會先驗證緩衝區的大小,再呼叫此方法,並將範圍配量為完全 HashLengthInBytes 長度。

適用於