Class AesGcm
- Namespace
- CryptoHives.Foundation.Security.Cryptography.Cipher
- Assembly
- CryptoHives.Foundation.Security.Cryptography.dll
AES-GCM (Galois/Counter Mode) authenticated encryption implementation.
public abstract class AesGcm : IAeadCipher, IDisposable
- Inheritance
-
AesGcm
- Implements
- Derived
- Inherited Members
Remarks
AES-GCM provides authenticated encryption with associated data (AEAD). It is widely used in TLS 1.3, IPsec, and other security protocols.
Security properties:
- Confidentiality via AES-CTR mode
- Authenticity via GHASH universal hash
- Support for additional authenticated data (AAD)
Important: Never reuse a (key, nonce) pair. Each encryption must use a unique nonce. For random nonces, 96-bit (12-byte) nonces are recommended.
Example usage:
using var aesGcm = AesGcm256.Create(key);
// Encrypt
byte[] ciphertext = aesGcm.Encrypt(nonce, plaintext, associatedData);
// Decrypt
byte[] plaintext = aesGcm.Decrypt(nonce, ciphertext, associatedData);
Constructors
AesGcm(ReadOnlySpan<byte>)
Initializes a new instance of the AesGcm class.
protected AesGcm(ReadOnlySpan<byte> key)
Parameters
keyReadOnlySpan<byte>The AES key (16, 24, or 32 bytes).
Properties
AlgorithmName
Gets the algorithm name.
public abstract string AlgorithmName { get; }
Property Value
KeySizeBytes
Gets the key size in bytes.
public int KeySizeBytes { get; }
Property Value
NonceSizeBytes
Gets the nonce size in bytes.
public int NonceSizeBytes { get; }
Property Value
TagSizeBytes
Gets the authentication tag size in bytes.
public int TagSizeBytes { get; }
Property Value
Methods
Decrypt(ReadOnlySpan<byte>, ReadOnlySpan<byte>, ReadOnlySpan<byte>)
Decrypts the ciphertext (with appended tag) and verifies authenticity.
public byte[] Decrypt(ReadOnlySpan<byte> nonce, ReadOnlySpan<byte> ciphertextWithTag, ReadOnlySpan<byte> associatedData = default)
Parameters
nonceReadOnlySpan<byte>The nonce used during encryption.
ciphertextWithTagReadOnlySpan<byte>The ciphertext with appended authentication tag.
associatedDataReadOnlySpan<byte>Additional authenticated data (must match encryption).
Returns
- byte[]
The decrypted plaintext.
Exceptions
- CryptographicException
Authentication failed - the data has been tampered with or the wrong key/nonce was used.
Decrypt(ReadOnlySpan<byte>, ReadOnlySpan<byte>, ReadOnlySpan<byte>, Span<byte>, ReadOnlySpan<byte>)
Decrypts the ciphertext and verifies the authentication tag.
public bool Decrypt(ReadOnlySpan<byte> nonce, ReadOnlySpan<byte> ciphertext, ReadOnlySpan<byte> tag, Span<byte> plaintext, ReadOnlySpan<byte> associatedData = default)
Parameters
nonceReadOnlySpan<byte>The nonce used during encryption.
ciphertextReadOnlySpan<byte>The encrypted data.
tagReadOnlySpan<byte>The authentication tag to verify.
plaintextSpan<byte>The output buffer for decrypted data (same size as ciphertext).
associatedDataReadOnlySpan<byte>Additional authenticated data (must match encryption).
Returns
- bool
True if decryption and authentication succeeded; false if authentication failed.
Exceptions
- ArgumentException
nonceortagis not the correct size, orplaintextbuffer is too small.- ObjectDisposedException
Thrown when the instance has been disposed.
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public void Dispose()
Dispose(bool)
Releases resources used by this instance.
protected virtual void Dispose(bool disposing)
Parameters
Encrypt(ReadOnlySpan<byte>, ReadOnlySpan<byte>, ReadOnlySpan<byte>)
Encrypts the plaintext and returns ciphertext with appended tag.
public byte[] Encrypt(ReadOnlySpan<byte> nonce, ReadOnlySpan<byte> plaintext, ReadOnlySpan<byte> associatedData = default)
Parameters
nonceReadOnlySpan<byte>The unique nonce for this encryption.
plaintextReadOnlySpan<byte>The data to encrypt.
associatedDataReadOnlySpan<byte>Additional data to authenticate (optional).
Returns
- byte[]
The ciphertext with authentication tag appended.
Encrypt(ReadOnlySpan<byte>, ReadOnlySpan<byte>, Span<byte>, Span<byte>, ReadOnlySpan<byte>)
Encrypts the plaintext and computes the authentication tag.
public void Encrypt(ReadOnlySpan<byte> nonce, ReadOnlySpan<byte> plaintext, Span<byte> ciphertext, Span<byte> tag, ReadOnlySpan<byte> associatedData = default)
Parameters
nonceReadOnlySpan<byte>The unique nonce for this encryption.
plaintextReadOnlySpan<byte>The data to encrypt.
ciphertextSpan<byte>The output buffer for ciphertext (same size as plaintext).
tagSpan<byte>The output buffer for the authentication tag.
associatedDataReadOnlySpan<byte>Additional data to authenticate (optional).
Exceptions
- ArgumentException
nonceis not the correct size, orciphertextortagbuffers are too small.- ObjectDisposedException
Thrown when the instance has been disposed.