SHA512 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
計算輸入資料的 SHA512 雜湊。
public ref class SHA512 abstract : System::Security::Cryptography::HashAlgorithm
public abstract class SHA512 : System.Security.Cryptography.HashAlgorithm
[System.Runtime.InteropServices.ComVisible(true)]
public abstract class SHA512 : System.Security.Cryptography.HashAlgorithm
type SHA512 = class
inherit HashAlgorithm
[<System.Runtime.InteropServices.ComVisible(true)>]
type SHA512 = class
inherit HashAlgorithm
Public MustInherit Class SHA512
Inherits HashAlgorithm
- 繼承
- 衍生
- 屬性
範例
下列範例會計算 的SHA512data
哈希,並將其儲存在 result
中。 這個範例假設有預先定義的常數 DATA_SIZE
。
array<Byte>^ data = gcnew array<Byte>( DATA_SIZE );
array<Byte>^ result;
SHA512^ shaM = gcnew SHA512Managed;
result = shaM->ComputeHash( data );
byte[] data = new byte[DATA_SIZE];
byte[] result;
using (SHA512 sha512 = SHA512.Create())
{
result = sha512.ComputeHash(data);
}
Dim data(DATA_SIZE) As Byte
Dim result() As Byte
Using sha512 As SHA512 = SHA512.Create()
result = sha512.ComputeHash(data)
End Using
備註
哈希是用來做為代表大量數據之固定大小的唯一值。 如果對應數據也相符,則兩組數據的哈希應該相符。 對數據的小型變更會導致哈希中發生大量無法預測的變更。
演算法的 SHA512 哈希大小為512位。
這是 abstract 類別。 這個類別的唯一實作是 SHA512Managed。
建構函式
SHA512() |
初始化 SHA512 的新執行個體。 |
欄位
HashSizeInBits |
SHA512 演算法所產生的哈希大小,以位為單位。 |
HashSizeInBytes |
SHA512 演算法所產生的哈希大小,以位元組為單位。 |
HashSizeValue |
代表計算出來之雜湊碼的大小,以位元為單位。 (繼承來源 HashAlgorithm) |
HashValue |
表示計算出來的雜湊碼的值。 (繼承來源 HashAlgorithm) |
State |
表示雜湊計算的狀態。 (繼承來源 HashAlgorithm) |
屬性
CanReuseTransform |
取得值,表示目前的轉換是否可重複使用。 (繼承來源 HashAlgorithm) |
CanTransformMultipleBlocks |
在衍生類別中覆寫時,取得值以指出是否有多個區塊可被轉換。 (繼承來源 HashAlgorithm) |
Hash |
取得計算出來之雜湊碼的值。 (繼承來源 HashAlgorithm) |
HashSize |
取得計算出來之雜湊碼的大小,以位元為單位。 (繼承來源 HashAlgorithm) |
InputBlockSize |
在衍生類別中覆寫時,取得輸入區塊的大小。 (繼承來源 HashAlgorithm) |
OutputBlockSize |
在衍生類別中覆寫時,取得輸出區塊的大小。 (繼承來源 HashAlgorithm) |
方法
明確介面實作
IDisposable.Dispose() |
釋放 HashAlgorithm 所使用的 Unmanaged 資源,並選擇性地釋放 Managed 資源。 (繼承來源 HashAlgorithm) |