共用方式為


CryptographicOperations.TryHashData 方法

定義

嘗試計算數據的哈希。

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>

要哈希的數據。

destination
Span<Byte>

要接收哈希值的緩衝區。

bytesWritten
Int32

當這個方法傳回時,寫入至 destination的位元組總數。

傳回

false 如果 destination 太小而無法儲存匯出的哈希,則 true 否則為 。

例外狀況

hashAlgorithm 具有空白的 Name

hashAlgorithm 具有 nullName

hashAlgorithm 指定目前平台不支援的哈希演算法。

hashAlgorithm 指定未知的哈希演算法。

適用於