RSA.TryHashData 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
使用指定的演算法來,將結果寫入提供的緩衝區,以嘗試計算所提供資料的雜湊。
protected:
virtual bool TryHashData(ReadOnlySpan<System::Byte> data, Span<System::Byte> destination, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, [Runtime::InteropServices::Out] int % bytesWritten);
protected virtual bool TryHashData (ReadOnlySpan<byte> data, Span<byte> destination, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, out int bytesWritten);
abstract member TryHashData : ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.HashAlgorithmName * int -> bool
override this.TryHashData : ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.HashAlgorithmName * int -> bool
Protected Overridable Function TryHashData (data As ReadOnlySpan(Of Byte), destination As Span(Of Byte), hashAlgorithm As HashAlgorithmName, ByRef bytesWritten As Integer) As Boolean
參數
- data
- ReadOnlySpan<Byte>
要雜湊的資料。
- hashAlgorithm
- HashAlgorithmName
要用來雜湊資料的演算法。
- bytesWritten
- Int32
當這個方法傳回時,寫入 destination
的位元組總數。 這個參數會被視為未初始化。
傳回
如果 destination
的長度足以接收雜湊值,則為 true
;否則為 false
。
備註
此方法預設實作會呼叫 HashData(Byte[], Int32, Int32, HashAlgorithmName) ,並將結果 destination
複製到 。
衍生型別應該覆寫這個方法,以避免建立中繼陣列。