SHA384Managed 类
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
注意
Derived cryptographic types are obsolete. Use the Create method on the base type instead.
使用托管库计算输入数据的 SHA384 哈希值。
public ref class SHA384Managed sealed : System::Security::Cryptography::SHA384
public ref class SHA384Managed : System::Security::Cryptography::SHA384
public sealed class SHA384Managed : System.Security.Cryptography.SHA384
[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 SHA384Managed : System.Security.Cryptography.SHA384
public class SHA384Managed : System.Security.Cryptography.SHA384
[System.Runtime.InteropServices.ComVisible(true)]
public class SHA384Managed : System.Security.Cryptography.SHA384
type SHA384Managed = class
inherit SHA384
[<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 SHA384Managed = class
inherit SHA384
[<System.Runtime.InteropServices.ComVisible(true)>]
type SHA384Managed = class
inherit SHA384
Public NotInheritable Class SHA384Managed
Inherits SHA384
Public Class SHA384Managed
Inherits SHA384
- 继承
- 属性
以下示例计算 的哈希并将其SHA384Managed存储在 中result
。data
此示例假定有一个预定义的常量 DATA_SIZE
。
array<Byte>^ data = gcnew array<Byte>( DATA_SIZE );
array<Byte>^ result;
SHA384^ shaM = gcnew SHA384Managed;
result = shaM->ComputeHash( data );
byte[] data = new byte[DATA_SIZE];
byte[] result;
using (SHA384 shaM = new SHA384Managed())
{
result = shaM.ComputeHash(data);
}
Dim data(DATA_SIZE) As Byte
Dim result() As Byte
Using shaM As New SHA384Managed()
result = shaM.ComputeHash(data)
End Using
哈希用作表示大量数据的固定大小的唯一值。 当并且仅当相应数据也匹配时,两组数据的哈希应匹配。 对数据的小更改会导致哈希中出现大量不可预知的更改。
算法的 SHA384Managed 哈希大小为 384 位。
SHA384Managed() |
已过时.
初始化 SHA384Managed 类的新实例。 |
Hash |
已过时.
SHA384 算法生成的哈希大小(以位为单位)。 (继承自 SHA384) |
Hash |
已过时.
SHA384 算法生成的哈希大小(以字节为单位)。 (继承自 SHA384) |
Hash |
已过时.
表示计算所得的哈希代码的大小(以位为单位)。 (继承自 HashAlgorithm) |
Hash |
已过时.
表示计算所得的哈希代码的值。 (继承自 HashAlgorithm) |
State |
已过时.
表示哈希计算的状态。 (继承自 HashAlgorithm) |
Can |
已过时.
获取一个值,该值指示是否可重复使用当前转换。 (继承自 HashAlgorithm) |
Can |
已过时.
当在派生类中重写时,获取一个值,该值指示是否可以转换多个块。 (继承自 HashAlgorithm) |
Hash |
已过时.
获取计算所得的哈希代码的值。 (继承自 HashAlgorithm) |
Hash |
已过时.
获取计算所得的哈希代码的大小(以位为单位)。 (继承自 HashAlgorithm) |
Input |
已过时.
当在派生类中重写时,获取输入块的大小。 (继承自 HashAlgorithm) |
Output |
已过时.
当在派生类中重写时,获取输出块的大小。 (继承自 HashAlgorithm) |
IDisposable. |
已过时.
释放由 HashAlgorithm 占用的非托管资源,还可以另外再释放托管资源。 (继承自 HashAlgorithm) |
产品 | 版本 (已过时) |
---|---|
.NET | Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5 (6, 7, 8, 9) |
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0, 2.1 |