CryptographicOperations.TryHashData 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
嘗試計算數據的哈希。
public:
static bool TryHashData(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, ReadOnlySpan<System::Byte> source, Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);
public static bool TryHashData (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, ReadOnlySpan<byte> source, Span<byte> destination, out int bytesWritten);
static member TryHashData : System.Security.Cryptography.HashAlgorithmName * ReadOnlySpan<byte> * Span<byte> * int -> bool
Public Shared Function TryHashData (hashAlgorithm As HashAlgorithmName, source As ReadOnlySpan(Of Byte), destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean
參數
- hashAlgorithm
- HashAlgorithmName
用來計算哈希的演算法。
- source
- ReadOnlySpan<Byte>
要哈希的數據。
- bytesWritten
- Int32
當這個方法傳回時,寫入至 destination
的位元組總數。
傳回
false
如果 destination
太小而無法儲存匯出的哈希,則 true
否則為 。
例外狀況
hashAlgorithm
具有空白的 Name。
hashAlgorithm
具有 null
的 Name。
hashAlgorithm
指定目前平台不支援的哈希演算法。
hashAlgorithm
指定未知的哈希演算法。