AesGcm 類別

定義

表示要搭配 Galois/計數器模式 (GCM) 模式作業使用的進階加密標準 (AES) 金鑰。

public ref class AesGcm sealed : IDisposable
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public sealed class AesGcm : IDisposable
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
public sealed class AesGcm : IDisposable
public sealed class AesGcm : IDisposable
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
type AesGcm = class
    interface IDisposable
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
type AesGcm = class
    interface IDisposable
type AesGcm = class
    interface IDisposable
Public NotInheritable Class AesGcm
Implements IDisposable
繼承
AesGcm
屬性
實作

建構函式

AesGcm(Byte[])
已淘汰.

使用提供的金鑰,初始化 AesGcm 類別的新執行個體。

AesGcm(Byte[], Int32)

使用提供的索引鍵和必要的標籤大小,初始化 類別的新實例 AesGcm

AesGcm(ReadOnlySpan<Byte>)
已淘汰.

使用提供的金鑰,初始化 AesGcm 類別的新執行個體。

AesGcm(ReadOnlySpan<Byte>, Int32)

使用提供的索引鍵和必要的標籤大小,初始化 類別的新實例 AesGcm

屬性

IsSupported

取得值,這個值表示目前平臺上是否支援演算法。

NonceByteSizes

取得這個執行個體支援的 nonce 大小 (以位元組為單位)。

TagByteSizes

取得這個執行個體支援的標記大小 (以位元組為單位)。

TagSizeInBytes

取得標記的大小,以位元組為單位。

方法

Decrypt(Byte[], Byte[], Byte[], Byte[], Byte[])

如果可對驗證標記進行驗證,則將加密文字解密至提供的目的地緩衝區。

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

如果可對驗證標記進行驗證,則將加密文字解密至提供的目的地緩衝區。

Dispose()

AesGcm 類別的目前執行個體所使用的資源釋出。

Encrypt(Byte[], Byte[], Byte[], Byte[], Byte[])

將純文字加密至加密文字目的地緩衝區,並在另一個緩衝區中產生驗證標記。

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

將純文字加密至加密文字目的地緩衝區,並在另一個緩衝區中產生驗證標記。

Equals(Object)

判斷指定的物件是否等於目前的物件。

(繼承來源 Object)
GetHashCode()

做為預設雜湊函式。

(繼承來源 Object)
GetType()

取得目前執行個體的 Type

(繼承來源 Object)
MemberwiseClone()

建立目前 Object 的淺層複製。

(繼承來源 Object)
ToString()

傳回代表目前物件的字串。

(繼承來源 Object)

適用於