SHA512Managed 类

定义

注意

Derived cryptographic types are obsolete. Use the Create method on the base type instead.

SHA512使用托管库计算输入数据的哈希算法。

public ref class SHA512Managed sealed : System::Security::Cryptography::SHA512
public ref class SHA512Managed : System::Security::Cryptography::SHA512
[System.Obsolete("Derived cryptographic types are obsolete. Use the Create method on the base type instead.", DiagnosticId="SYSLIB0021", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public sealed class SHA512Managed : System.Security.Cryptography.SHA512
public sealed class SHA512Managed : System.Security.Cryptography.SHA512
public class SHA512Managed : System.Security.Cryptography.SHA512
[System.Runtime.InteropServices.ComVisible(true)]
public class SHA512Managed : System.Security.Cryptography.SHA512
[<System.Obsolete("Derived cryptographic types are obsolete. Use the Create method on the base type instead.", DiagnosticId="SYSLIB0021", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
type SHA512Managed = class
    inherit SHA512
type SHA512Managed = class
    inherit SHA512
[<System.Runtime.InteropServices.ComVisible(true)>]
type SHA512Managed = class
    inherit SHA512
Public NotInheritable Class SHA512Managed
Inherits SHA512
Public Class SHA512Managed
Inherits SHA512
继承
SHA512Managed
属性

示例

下面的示例计算SHA512Manageddata哈希,并将结果存储在result中。 此示例假定有一个预定义的常量 DATA_SIZE

byte[] data = new byte[DATA_SIZE];
byte[] result;

using (SHA512 shaM = new SHA512Managed())
{
    result = shaM.ComputeHash(data);
}
Dim data(DATA_SIZE) As Byte
Dim result() As Byte

Using shaM As New SHA512Managed()
    result = shaM.ComputeHash(data)
End Using

注解

哈希用作表示大量数据的固定大小的唯一值。 如果相应的数据也匹配,则两组数据集的哈希应匹配。 对数据的小更改会导致哈希中出现大量不可预知的更改。

算法的 SHA512Managed 哈希大小为 512 位。

构造函数

名称 说明
SHA512Managed()
已过时.

初始化 SHA512Managed 类的新实例。

字段

名称 说明
HashSizeInBits
已过时.

SHA-512 算法生成的哈希大小(以位为单位)。

(继承自 SHA512)
HashSizeInBytes
已过时.

SHA-512 算法生成的哈希大小(以字节为单位)。

(继承自 SHA512)
HashSizeValue
已过时.

表示计算哈希代码的大小(以位为单位)。

(继承自 HashAlgorithm)
HashValue
已过时.

表示计算的哈希代码的值。

(继承自 HashAlgorithm)
State
已过时.

表示哈希计算的状态。

(继承自 HashAlgorithm)

属性

名称 说明
CanReuseTransform
已过时.

获取一个值,该值指示是否可以重复使用当前转换。

(继承自 HashAlgorithm)
CanTransformMultipleBlocks
已过时.

在派生类中重写时,获取一个值,该值指示是否可以转换多个块。

(继承自 HashAlgorithm)
Hash
已过时.

获取计算的哈希代码的值。

(继承自 HashAlgorithm)
HashSize
已过时.

获取计算哈希代码的大小(以位为单位)。

(继承自 HashAlgorithm)
InputBlockSize
已过时.

在派生类中重写时,获取输入块大小。

(继承自 HashAlgorithm)
OutputBlockSize
已过时.

在派生类中重写时,获取输出块大小。

(继承自 HashAlgorithm)

方法

名称 说明
Clear()
已过时.

释放类使用 HashAlgorithm 的所有资源。

(继承自 HashAlgorithm)
ComputeHash(Byte[], Int32, Int32)
已过时.

计算指定字节数组的指定区域的哈希值。

(继承自 HashAlgorithm)
ComputeHash(Byte[])
已过时.

计算指定字节数组的哈希值。

(继承自 HashAlgorithm)
ComputeHash(Stream)
已过时.

计算指定 Stream 对象的哈希值。

(继承自 HashAlgorithm)
ComputeHashAsync(Stream, CancellationToken)
已过时.

异步计算指定 Stream 对象的哈希值。

(继承自 HashAlgorithm)
Dispose()
已过时.

释放类的 HashAlgorithm 当前实例使用的所有资源。

(继承自 HashAlgorithm)
Dispose(Boolean)
已过时.

释放对象使用 SHA512Managed 的非托管资源,并选择性地释放托管资源。

Dispose(Boolean)
已过时.

释放由托管资源使用 HashAlgorithm 的非托管资源,并选择性地释放托管资源。

(继承自 HashAlgorithm)
Equals(Object)
已过时.

确定指定的对象是否等于当前对象。

(继承自 Object)
GetHashCode()
已过时.

用作默认哈希函数。

(继承自 Object)
GetType()
已过时.

获取当前实例的 Type

(继承自 Object)
HashCore(Byte[], Int32, Int32)
已过时.

在派生类中重写时,将写入对象的数据路由到 SHA512Managed 用于计算哈希的哈希算法中。

HashCore(Byte[], Int32, Int32)
已过时.

在派生类中重写时,将写入对象的数据路由到用于计算哈希的哈希算法中。

(继承自 HashAlgorithm)
HashCore(ReadOnlySpan<Byte>)
已过时.

将写入对象的数据路由到用于计算哈希的哈希算法中。

(继承自 HashAlgorithm)
HashFinal()
已过时.

在派生类中重写时,在加密流对象处理最后一个数据之后,完成哈希计算。

HashFinal()
已过时.

在派生类中重写时,在加密哈希算法处理最后一个数据之后完成哈希计算。

(继承自 HashAlgorithm)
Initialize()
已过时.

使用托管库初始化类的 SHA512Managed 实例。

MemberwiseClone()
已过时.

创建当前 Object的浅表副本。

(继承自 Object)
ToString()
已过时.

返回一个表示当前对象的字符串。

(继承自 Object)
TransformBlock(Byte[], Int32, Int32, Byte[], Int32)
已过时.

计算输入字节数组的指定区域的哈希值,并将输入字节数组的指定区域复制到输出字节数组的指定区域。

(继承自 HashAlgorithm)
TransformFinalBlock(Byte[], Int32, Int32)
已过时.

计算指定字节数组的指定区域的哈希值。

(继承自 HashAlgorithm)
TryComputeHash(ReadOnlySpan<Byte>, Span<Byte>, Int32)
已过时.

尝试计算指定字节数组的哈希值。

(继承自 HashAlgorithm)
TryHashFinal(Span<Byte>, Int32)
已过时.

尝试在哈希算法处理最后一个数据后完成哈希计算。

(继承自 HashAlgorithm)

显式接口实现

名称 说明
IDisposable.Dispose()
已过时.

释放由托管资源使用 HashAlgorithm 的非托管资源,并选择性地释放托管资源。

(继承自 HashAlgorithm)

适用于

另请参阅