Crc64.TryHash(ReadOnlySpan<Byte>, Span<Byte>, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
尝试将所提供的数据的 CRC-64 哈希计算到提供的目标中。
public:
static bool TryHash(ReadOnlySpan<System::Byte> source, Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);
public static bool TryHash (ReadOnlySpan<byte> source, Span<byte> destination, out int bytesWritten);
static member TryHash : ReadOnlySpan<byte> * Span<byte> * int -> bool
Public Shared Function TryHash (source As ReadOnlySpan(Of Byte), destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean
参数
- source
- ReadOnlySpan<Byte>
要哈希的数据。
- bytesWritten
- Int32
当此方法返回时,包含写入到 destination
的字节数。
返回
true
如果 destination
足够长以接收计算的哈希值 (8 个字节) ,则为 ;否则为 false
。