Kmac256.HashData 方法

定义

重载

HashData(Byte[], Byte[], Int32, Byte[])

使用 KMAC256 算法计算数据的哈希。

HashData(Byte[], Stream, Int32, Byte[])

使用 KMAC256 算法计算流的哈希。

HashData(ReadOnlySpan<Byte>, Stream, Int32, ReadOnlySpan<Byte>)

使用 KMAC256 算法计算流的哈希。

HashData(ReadOnlySpan<Byte>, Stream, Span<Byte>, ReadOnlySpan<Byte>)

使用 KMAC256 算法计算流的哈希。

HashData(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Int32, ReadOnlySpan<Byte>)

使用 KMAC256 算法计算数据的哈希。

HashData(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, ReadOnlySpan<Byte>)

使用 KMAC256 算法计算数据的哈希。

HashData(Byte[], Byte[], Int32, Byte[])

Source:
Kmac256.cs

使用 KMAC256 算法计算数据的哈希。

public static byte[] HashData (byte[] key, byte[] source, int outputLength, byte[]? customizationString = default);
static member HashData : byte[] * byte[] * int * byte[] -> byte[]
Public Shared Function HashData (key As Byte(), source As Byte(), outputLength As Integer, Optional customizationString As Byte() = Nothing) As Byte()

参数

key
Byte[]

KMAC 密钥。

source
Byte[]

要哈希的数据。

outputLength
Int32

要生成的哈希的大小。

customizationString
Byte[]

可选的自定义字符串。 默认值不为自定义字符串。

返回

Byte[]

数据的哈希。

例外

outputLength 为负数。

keysourcenull

操作期间发生错误。

平台不支持KMAC256。 调用方可以使用 IsSupported 属性来确定平台是否支持KMAC256。

适用于

HashData(Byte[], Stream, Int32, Byte[])

Source:
Kmac256.cs

使用 KMAC256 算法计算流的哈希。

public static byte[] HashData (byte[] key, System.IO.Stream source, int outputLength, byte[]? customizationString = default);
static member HashData : byte[] * System.IO.Stream * int * byte[] -> byte[]
Public Shared Function HashData (key As Byte(), source As Stream, outputLength As Integer, Optional customizationString As Byte() = Nothing) As Byte()

参数

key
Byte[]

KMAC 密钥。

source
Stream

要哈希的流。

outputLength
Int32

要生成的哈希的大小。

customizationString
Byte[]

可选的自定义字符串。 默认值不为自定义字符串。

返回

Byte[]

数据的哈希。

例外

source 不支持读取。

outputLength 为负数。

keysourcenull

操作期间发生错误。

平台不支持KMAC256。 调用方可以使用 IsSupported 属性来确定平台是否支持KMAC256。

适用于

HashData(ReadOnlySpan<Byte>, Stream, Int32, ReadOnlySpan<Byte>)

Source:
Kmac256.cs

使用 KMAC256 算法计算流的哈希。

public static byte[] HashData (ReadOnlySpan<byte> key, System.IO.Stream source, int outputLength, ReadOnlySpan<byte> customizationString = default);
static member HashData : ReadOnlySpan<byte> * System.IO.Stream * int * ReadOnlySpan<byte> -> byte[]
Public Shared Function HashData (key As ReadOnlySpan(Of Byte), source As Stream, outputLength As Integer, Optional customizationString As ReadOnlySpan(Of Byte) = Nothing) As Byte()

参数

key
ReadOnlySpan<Byte>

KMAC 密钥。

source
Stream

要哈希的流。

outputLength
Int32

要生成的哈希的大小。

customizationString
ReadOnlySpan<Byte>

可选的自定义字符串。 默认值不为自定义字符串。

返回

Byte[]

数据的哈希。

例外

source 不支持读取。

outputLength 为负数。

source null

操作期间发生错误。

平台不支持KMAC256。 调用方可以使用 IsSupported 属性来确定平台是否支持KMAC256。

适用于

HashData(ReadOnlySpan<Byte>, Stream, Span<Byte>, ReadOnlySpan<Byte>)

Source:
Kmac256.cs

使用 KMAC256 算法计算流的哈希。

public static void HashData (ReadOnlySpan<byte> key, System.IO.Stream source, Span<byte> destination, ReadOnlySpan<byte> customizationString = default);
static member HashData : ReadOnlySpan<byte> * System.IO.Stream * Span<byte> * ReadOnlySpan<byte> -> unit
Public Shared Sub HashData (key As ReadOnlySpan(Of Byte), source As Stream, destination As Span(Of Byte), Optional customizationString As ReadOnlySpan(Of Byte) = Nothing)

参数

key
ReadOnlySpan<Byte>

KMAC 密钥。

source
Stream

要哈希的流。

destination
Span<Byte>

要填充哈希的缓冲区。

customizationString
ReadOnlySpan<Byte>

可选的自定义字符串。 默认值不为自定义字符串。

例外

source 不支持读取。

source null

操作期间发生错误。

平台不支持KMAC256。 调用方可以使用 IsSupported 属性来确定平台是否支持KMAC256。

适用于

HashData(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Int32, ReadOnlySpan<Byte>)

Source:
Kmac256.cs

使用 KMAC256 算法计算数据的哈希。

public static byte[] HashData (ReadOnlySpan<byte> key, ReadOnlySpan<byte> source, int outputLength, ReadOnlySpan<byte> customizationString = default);
static member HashData : ReadOnlySpan<byte> * ReadOnlySpan<byte> * int * ReadOnlySpan<byte> -> byte[]
Public Shared Function HashData (key As ReadOnlySpan(Of Byte), source As ReadOnlySpan(Of Byte), outputLength As Integer, Optional customizationString As ReadOnlySpan(Of Byte) = Nothing) As Byte()

参数

key
ReadOnlySpan<Byte>

KMAC 密钥。

source
ReadOnlySpan<Byte>

要哈希的数据。

outputLength
Int32

要生成的哈希的大小。

customizationString
ReadOnlySpan<Byte>

可选的自定义字符串。 默认值不为自定义字符串。

返回

Byte[]

数据的哈希。

例外

outputLength 为负数。

操作期间发生错误。

平台不支持KMAC256。 调用方可以使用 IsSupported 属性来确定平台是否支持KMAC256。

适用于

HashData(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, ReadOnlySpan<Byte>)

Source:
Kmac256.cs

使用 KMAC256 算法计算数据的哈希。

public static void HashData (ReadOnlySpan<byte> key, ReadOnlySpan<byte> source, Span<byte> destination, ReadOnlySpan<byte> customizationString = default);
static member HashData : ReadOnlySpan<byte> * ReadOnlySpan<byte> * Span<byte> * ReadOnlySpan<byte> -> unit
Public Shared Sub HashData (key As ReadOnlySpan(Of Byte), source As ReadOnlySpan(Of Byte), destination As Span(Of Byte), Optional customizationString As ReadOnlySpan(Of Byte) = Nothing)

参数

key
ReadOnlySpan<Byte>

KMAC 密钥。

source
ReadOnlySpan<Byte>

要哈希的数据。

destination
Span<Byte>

要填充哈希的缓冲区。

customizationString
ReadOnlySpan<Byte>

可选的自定义字符串。 默认值不为自定义字符串。

例外

操作期间发生错误。

平台不支持KMAC256。 调用方可以使用 IsSupported 属性来确定平台是否支持KMAC256。

适用于