IncrementalHash.GetHashAndReset 方法

定义

重载

GetHashAndReset()

检索从之前调用 AppendData(Byte[])中累积的数据的哈希或 HMAC,并返回到对象在构造时的状态。

GetHashAndReset(Span<Byte>)

检索从之前调用 AppendData(ReadOnlySpan<Byte>) 方法中累积的数据的哈希或基于哈希的消息身份验证代码(HMAC),并将对象重置为其初始状态。

GetHashAndReset()

Source:
IncrementalHash.cs
Source:
IncrementalHash.cs
Source:
IncrementalHash.cs

检索从之前调用 AppendData(Byte[])中累积的数据的哈希或 HMAC,并返回到对象在构造时的状态。

public:
 cli::array <System::Byte> ^ GetHashAndReset();
public byte[] GetHashAndReset ();
member this.GetHashAndReset : unit -> byte[]
Public Function GetHashAndReset () As Byte()

返回

Byte[]

计算的哈希或 HMAC。

例外

对象已释放。

适用于

GetHashAndReset(Span<Byte>)

Source:
IncrementalHash.cs
Source:
IncrementalHash.cs
Source:
IncrementalHash.cs

检索从之前调用 AppendData(ReadOnlySpan<Byte>) 方法中累积的数据的哈希或基于哈希的消息身份验证代码(HMAC),并将对象重置为其初始状态。

public:
 int GetHashAndReset(Span<System::Byte> destination);
public int GetHashAndReset (Span<byte> destination);
member this.GetHashAndReset : Span<byte> -> int
Public Function GetHashAndReset (destination As Span(Of Byte)) As Integer

参数

destination
Span<Byte>

用于接收哈希或 HMAC 值的缓冲区。

返回

写入 destination的字节数。

例外

destinationLength 值小于 HashLengthInBytes

对象已释放。

适用于