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 长度。

适用于