CryptographicOperations.HashData 方法

定义

重载

HashData(HashAlgorithmName, Byte[])

计算数据的哈希。

HashData(HashAlgorithmName, Stream)

计算流的哈希。

HashData(HashAlgorithmName, ReadOnlySpan<Byte>)

计算数据的哈希。

HashData(HashAlgorithmName, Stream, Span<Byte>)

计算流的哈希。

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

计算数据的哈希。

HashData(HashAlgorithmName, Byte[])

Source:
CryptographicOperations.cs

计算数据的哈希。

public:
 static cli::array <System::Byte> ^ HashData(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, cli::array <System::Byte> ^ source);
public static byte[] HashData (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, byte[] source);
static member HashData : System.Security.Cryptography.HashAlgorithmName * byte[] -> byte[]
Public Shared Function HashData (hashAlgorithm As HashAlgorithmName, source As Byte()) As Byte()

参数

hashAlgorithm
HashAlgorithmName

用于计算哈希的算法。

source
Byte[]

要哈希的数据。

返回

Byte[]

数据的哈希。

例外

source null

-或-

hashAlgorithm 有一个 nullName

hashAlgorithm 有一个为空的 Name

hashAlgorithm 指定当前平台不支持的哈希算法。

hashAlgorithm 指定未知哈希算法。

适用于

HashData(HashAlgorithmName, Stream)

Source:
CryptographicOperations.cs

计算流的哈希。

public:
 static cli::array <System::Byte> ^ HashData(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, System::IO::Stream ^ source);
public static byte[] HashData (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.IO.Stream source);
static member HashData : System.Security.Cryptography.HashAlgorithmName * System.IO.Stream -> byte[]
Public Shared Function HashData (hashAlgorithm As HashAlgorithmName, source As Stream) As Byte()

参数

hashAlgorithm
HashAlgorithmName

用于计算哈希的算法。

source
Stream

要哈希的流。

返回

Byte[]

数据的哈希。

例外

source null

-或-

hashAlgorithm 有一个 nullName

hashAlgorithm 有一个为空的 Name

-或-

source 不支持读取。

hashAlgorithm 指定当前平台不支持的哈希算法。

hashAlgorithm 指定未知哈希算法。

适用于

HashData(HashAlgorithmName, ReadOnlySpan<Byte>)

Source:
CryptographicOperations.cs

计算数据的哈希。

public:
 static cli::array <System::Byte> ^ HashData(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, ReadOnlySpan<System::Byte> source);
public static byte[] HashData (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, ReadOnlySpan<byte> source);
static member HashData : System.Security.Cryptography.HashAlgorithmName * ReadOnlySpan<byte> -> byte[]
Public Shared Function HashData (hashAlgorithm As HashAlgorithmName, source As ReadOnlySpan(Of Byte)) As Byte()

参数

hashAlgorithm
HashAlgorithmName

用于计算哈希的算法。

source
ReadOnlySpan<Byte>

要哈希的数据。

返回

Byte[]

数据的哈希。

例外

hashAlgorithm 有一个 nullName

hashAlgorithm 有一个为空的 Name

hashAlgorithm 指定当前平台不支持的哈希算法。

hashAlgorithm 指定未知哈希算法。

适用于

HashData(HashAlgorithmName, Stream, Span<Byte>)

Source:
CryptographicOperations.cs

计算流的哈希。

public:
 static int HashData(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, System::IO::Stream ^ source, Span<System::Byte> destination);
public static int HashData (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.IO.Stream source, Span<byte> destination);
static member HashData : System.Security.Cryptography.HashAlgorithmName * System.IO.Stream * Span<byte> -> int
Public Shared Function HashData (hashAlgorithm As HashAlgorithmName, source As Stream, destination As Span(Of Byte)) As Integer

参数

hashAlgorithm
HashAlgorithmName

用于计算哈希的算法。

source
Stream

要哈希的流。

destination
Span<Byte>

要接收哈希值的缓冲区。

返回

写入 destination的总字节数。

例外

source null

-或-

hashAlgorithm 有一个 nullName

destination 中的缓冲区太小,无法容纳计算的哈希大小。

-或-

hashAlgorithm 有一个为空的 Name

-或-

source 不支持读取。

hashAlgorithm 指定当前平台不支持的哈希算法。

hashAlgorithm 指定未知哈希算法。

适用于

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

Source:
CryptographicOperations.cs

计算数据的哈希。

public:
 static int HashData(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, ReadOnlySpan<System::Byte> source, Span<System::Byte> destination);
public static int HashData (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, ReadOnlySpan<byte> source, Span<byte> destination);
static member HashData : System.Security.Cryptography.HashAlgorithmName * ReadOnlySpan<byte> * Span<byte> -> int
Public Shared Function HashData (hashAlgorithm As HashAlgorithmName, source As ReadOnlySpan(Of Byte), destination As Span(Of Byte)) As Integer

参数

hashAlgorithm
HashAlgorithmName

用于计算哈希的算法。

source
ReadOnlySpan<Byte>

要哈希的数据。

destination
Span<Byte>

要接收哈希值的缓冲区。

返回

写入 destination的总字节数。

例外

destination 中的缓冲区太小,无法容纳计算的哈希大小。

-或-

hashAlgorithm 有一个为空的 Name

hashAlgorithm 有一个 nullName

hashAlgorithm 指定当前平台不支持的哈希算法。

hashAlgorithm 指定未知哈希算法。

适用于