IncrementalHash.TryGetCurrentHash(Span<Byte>, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
尝试在哈希或基于哈希的消息验证码 (HMAC) 中检索从之前对 AppendData(ReadOnlySpan<Byte>) 方法的调用中累积的数据,无需将对象重置为初始状态。
public:
bool TryGetCurrentHash(Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);
public bool TryGetCurrentHash (Span<byte> destination, out int bytesWritten);
member this.TryGetCurrentHash : Span<byte> * int -> bool
Public Function TryGetCurrentHash (destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean
参数
- bytesWritten
- Int32
此方法返回时,为写入 destination
的字节总数。
该参数未经初始化即被处理。
返回
destination
的长度不足以接收哈希或 HMAC 值,则为 true
;否则为 false
。
例外
对象已被释放。