RSA.TryHashData 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
尝试使用指定算法计算提供的数据的哈希值,然后将结果写入提供的缓冲区中。
protected:
virtual bool TryHashData(ReadOnlySpan<System::Byte> data, Span<System::Byte> destination, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, [Runtime::InteropServices::Out] int % bytesWritten);
protected virtual bool TryHashData (ReadOnlySpan<byte> data, Span<byte> destination, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, out int bytesWritten);
abstract member TryHashData : ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.HashAlgorithmName * int -> bool
override this.TryHashData : ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.HashAlgorithmName * int -> bool
Protected Overridable Function TryHashData (data As ReadOnlySpan(Of Byte), destination As Span(Of Byte), hashAlgorithm As HashAlgorithmName, ByRef bytesWritten As Integer) As Boolean
参数
- data
- ReadOnlySpan<Byte>
要进行哈希处理的数据。
- hashAlgorithm
- HashAlgorithmName
要用于哈希处理数据的算法。
- bytesWritten
- Int32
此方法返回时,为写入 destination
的字节总数。 该参数未经初始化即被处理。
返回
destination
的长度不足以接收哈希值,则为 true
;否则为 false
。
注解
此方法的默认实现调用 HashData(Byte[], Int32, Int32, HashAlgorithmName) 并将结果复制到 destination
。
派生类型应重写此方法,以避免创建中间数组。