IncrementalHash.GetCurrentHash 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
GetCurrentHash() |
擷取先前對 AppendData(ReadOnlySpan<Byte>) 方法的呼叫所累積之資料的雜湊或雜湊式訊息驗證碼 (HMAC),而不將物件重設為其初始狀態。 |
GetCurrentHash(Span<Byte>) |
擷取先前對 AppendData(ReadOnlySpan<Byte>) 方法的呼叫所累積之資料的雜湊或雜湊式訊息驗證碼 (HMAC),而不將物件重設為其初始狀態。 |
GetCurrentHash()
擷取先前對 AppendData(ReadOnlySpan<Byte>) 方法的呼叫所累積之資料的雜湊或雜湊式訊息驗證碼 (HMAC),而不將物件重設為其初始狀態。
public:
cli::array <System::Byte> ^ GetCurrentHash();
public byte[] GetCurrentHash ();
member this.GetCurrentHash : unit -> byte[]
Public Function GetCurrentHash () As Byte()
傳回
Byte[]
已計算的雜湊或 HMAC。
例外狀況
物件已經處置。
適用於
GetCurrentHash(Span<Byte>)
擷取先前對 AppendData(ReadOnlySpan<Byte>) 方法的呼叫所累積之資料的雜湊或雜湊式訊息驗證碼 (HMAC),而不將物件重設為其初始狀態。
public:
int GetCurrentHash(Span<System::Byte> destination);
public int GetCurrentHash (Span<byte> destination);
member this.GetCurrentHash : Span<byte> -> int
Public Function GetCurrentHash (destination As Span(Of Byte)) As Integer
參數
傳回
寫入至 destination
的位元組數。
例外狀況
destination
具有小於 HashLengthInBytes 的 Length 值。
物件已經處置。