CryptographicOperations.TryHmacData 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
尝试计算数据的 HMAC。
public:
static bool TryHmacData(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, ReadOnlySpan<System::Byte> key, ReadOnlySpan<System::Byte> source, Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);
public static bool TryHmacData (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, ReadOnlySpan<byte> key, ReadOnlySpan<byte> source, Span<byte> destination, out int bytesWritten);
static member TryHmacData : System.Security.Cryptography.HashAlgorithmName * ReadOnlySpan<byte> * ReadOnlySpan<byte> * Span<byte> * int -> bool
Public Shared Function TryHmacData (hashAlgorithm As HashAlgorithmName, key As ReadOnlySpan(Of Byte), source As ReadOnlySpan(Of Byte), destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean
参数
- hashAlgorithm
- HashAlgorithmName
用于计算 HMAC 的算法。
- key
- ReadOnlySpan<Byte>
密钥。 密钥可以是任意长度。
- source
- ReadOnlySpan<Byte>
要通过计算 HMAC 的数据。
- bytesWritten
- Int32
此方法返回时,写入 destination
的字节总数。
返回
如果 destination
太小而无法容纳计算的 HMAC,则 false
否则 true
。
例外
hashAlgorithm
有一个为空的 Name。
hashAlgorithm
有一个 null
的 Name。
hashAlgorithm
指定当前平台不支持的哈希算法。
hashAlgorithm
指定未知哈希算法。