HashAlgorithm.TryComputeHash 方法

定义

尝试计算指定字节数组的哈希值。

public:
 bool TryComputeHash(ReadOnlySpan<System::Byte> source, Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);
public bool TryComputeHash (ReadOnlySpan<byte> source, Span<byte> destination, out int bytesWritten);
member this.TryComputeHash : ReadOnlySpan<byte> * Span<byte> * int -> bool
Public Function TryComputeHash (source As ReadOnlySpan(Of Byte), destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean

参数

source
ReadOnlySpan<Byte>

要计算其哈希代码的输入。

destination
Span<Byte>

要接收哈希值的缓冲区。

bytesWritten
Int32

此方法返回时,为写入 destination 的字节总数。 该参数未经初始化即被处理。

返回

destination 的长度不足以接收哈希值,则为 true;否则为 false

适用于