共用方式為


KmacXof128.GetHashAndReset 方法

定義

多載

GetHashAndReset(Span<Byte>)

使用先前呼叫 AppendData 方法所累積之數據的哈希填滿緩衝區,並將物件重設為其初始狀態。

GetHashAndReset(Int32)

擷取從先前呼叫 AppendData 方法所累積之數據的哈希,並將物件重設為其初始狀態。

GetHashAndReset(Span<Byte>)

來源:
KmacXof128.cs

使用先前呼叫 AppendData 方法所累積之數據的哈希填滿緩衝區,並將物件重設為其初始狀態。

public:
 void GetHashAndReset(Span<System::Byte> destination);
public void GetHashAndReset (Span<byte> destination);
member this.GetHashAndReset : Span<byte> -> unit
Public Sub GetHashAndReset (destination As Span(Of Byte))

參數

destination
Span<Byte>

要填入哈希的緩衝區。

例外狀況

作業期間發生錯誤。

對象已經處置。

另請參閱

適用於

GetHashAndReset(Int32)

來源:
KmacXof128.cs

擷取從先前呼叫 AppendData 方法所累積之數據的哈希,並將物件重設為其初始狀態。

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

參數

outputLength
Int32

要產生之哈希的大小。

傳回

Byte[]

計算的哈希。

例外狀況

outputLength 為負數。

作業期間發生錯誤。

對象已經處置。

另請參閱

適用於