Software APIs
Data Structures | Typedefs | Enumerations | Functions
aes_gcm.h File Reference

(be491409bb)

AES-GCM operations for the OpenTitan cryptography library. More...

#include "datatypes.h"

Go to the source code of this file.

Data Structures

struct  otcrypto_aes_gcm_context
  * Context for a streaming AES-GCM operation. More...
 

Typedefs

typedef enum otcrypto_aes_gcm_tag_len otcrypto_aes_gcm_tag_len_t
 Enum to denote the AES-GCM tag length. More...
 
typedef struct otcrypto_aes_gcm_context otcrypto_aes_gcm_context_t
  * Context for a streaming AES-GCM operation. More...
 

Enumerations

enum  otcrypto_aes_gcm_tag_len {
  kOtcryptoAesGcmTagLen128 = 0x167 ,
  kOtcryptoAesGcmTagLen96 = 0x35a ,
  kOtcryptoAesGcmTagLen64 = 0x5d4 ,
  kOtcryptoAesGcmTagLen32 = 0xf06
}
 Enum to denote the AES-GCM tag length. More...
 

Functions

otcrypto_status_t otcrypto_aes_gcm_encrypt (const otcrypto_blinded_key_t *key, otcrypto_const_byte_buf_t plaintext, otcrypto_const_word32_buf_t iv, otcrypto_const_byte_buf_t aad, otcrypto_aes_gcm_tag_len_t tag_len, otcrypto_byte_buf_t ciphertext, otcrypto_word32_buf_t auth_tag)
 Performs the AES-GCM authenticated encryption operation. More...
 
otcrypto_status_t otcrypto_aes_gcm_decrypt (const otcrypto_blinded_key_t *key, otcrypto_const_byte_buf_t ciphertext, otcrypto_const_word32_buf_t iv, otcrypto_const_byte_buf_t aad, otcrypto_aes_gcm_tag_len_t tag_len, otcrypto_const_word32_buf_t auth_tag, otcrypto_byte_buf_t plaintext, hardened_bool_t *success)
 Performs the AES-GCM authenticated decryption operation. More...
 
otcrypto_status_t otcrypto_aes_gcm_encrypt_init (const otcrypto_blinded_key_t *key, otcrypto_const_word32_buf_t iv, otcrypto_aes_gcm_context_t *ctx)
 Initializes the AES-GCM authenticated encryption operation. More...
 
otcrypto_status_t otcrypto_aes_gcm_decrypt_init (const otcrypto_blinded_key_t *key, otcrypto_const_word32_buf_t iv, otcrypto_aes_gcm_context_t *ctx)
 Initializes the AES-GCM authenticated decryption operation. More...
 
otcrypto_status_t otcrypto_aes_gcm_update_aad (otcrypto_aes_gcm_context_t *ctx, otcrypto_const_byte_buf_t aad)
 Updates additional authenticated data for an AES-GCM operation. More...
 
otcrypto_status_t otcrypto_aes_gcm_update_encrypted_data (otcrypto_aes_gcm_context_t *ctx, otcrypto_const_byte_buf_t input, otcrypto_byte_buf_t output, size_t *output_bytes_written)
 Updates authenticated-and-encrypted data for an AES-GCM operation. More...
 
otcrypto_status_t otcrypto_aes_gcm_encrypt_final (otcrypto_aes_gcm_context_t *ctx, otcrypto_aes_gcm_tag_len_t tag_len, otcrypto_byte_buf_t ciphertext, size_t *ciphertext_bytes_written, otcrypto_word32_buf_t auth_tag)
 Finishes the AES-GCM authenticated encryption operation. More...
 
otcrypto_status_t otcrypto_aes_gcm_decrypt_final (otcrypto_aes_gcm_context_t *ctx, otcrypto_const_word32_buf_t auth_tag, otcrypto_aes_gcm_tag_len_t tag_len, otcrypto_byte_buf_t plaintext, size_t *plaintext_bytes_written, hardened_bool_t *success)
 Finishes the AES-GCM authenticated decryption operation. More...
 

Detailed Description

AES-GCM operations for the OpenTitan cryptography library.

Definition in file aes_gcm.h.


Data Structure Documentation

◆ otcrypto_aes_gcm_context

struct otcrypto_aes_gcm_context

 * Context for a streaming AES-GCM operation.

Representation is internal to the AES-GCM implementation and subject to change.  

Definition at line 41 of file aes_gcm.h.

Data Fields
uint32_t data[98]

Typedef Documentation

◆ otcrypto_aes_gcm_context_t

 * Context for a streaming AES-GCM operation.

Representation is internal to the AES-GCM implementation and subject to change.  

◆ otcrypto_aes_gcm_tag_len_t

Enum to denote the AES-GCM tag length.

Values are hardened.

Enumeration Type Documentation

◆ otcrypto_aes_gcm_tag_len

Enum to denote the AES-GCM tag length.

Values are hardened.

Definition at line 24 of file aes_gcm.h.

Function Documentation

◆ otcrypto_aes_gcm_decrypt()

Performs the AES-GCM authenticated decryption operation.

This function first verifies if the authentication tag auth_tag matches the internally generated tag. Upon verification, the function decrypts the input ciphertext to get a `plaintext data.

The caller should allocate space for the plaintext buffer, (same length as ciphertext), and set the length of expected output in the len field of plaintext. If the user-set length and the output length does not match, an error message will be returned.

The caller must check the success argument before operating on plaintext. If the authentication check fails, then plaintext should not be used and there are no guarantees about its contents.

Parameters
keyPointer to the blinded gcm-key struct.
ciphertextInput data to be decrypted.
ivInitialization vector for the decryption function.
aadAdditional authenticated data.
tag_lenLength of authentication tag to be generated.
auth_tagAuthentication tag to be verified.
[out]plaintextDecrypted plaintext data, same len as input data.
[out]successTrue if the authentication check passed, otherwise false.
Returns
Result of the authenticated decryption. operation

Definition at line 274 of file aes_gcm.c.

◆ otcrypto_aes_gcm_decrypt_final()

otcrypto_status_t otcrypto_aes_gcm_decrypt_final ( otcrypto_aes_gcm_context_t ctx,
otcrypto_const_word32_buf_t  auth_tag,
otcrypto_aes_gcm_tag_len_t  tag_len,
otcrypto_byte_buf_t  plaintext,
size_t *  plaintext_bytes_written,
hardened_bool_t success 
)

Finishes the AES-GCM authenticated decryption operation.

Processes any remaining ciphertext from the context and computes the authentication tag and up to 1 block of plaintext.

The caller should allocate space for the plaintext buffer and set the len field accordingly. This function returns the ciphertext_bytes_written parameter with the number of bytes written to ciphertext. This function returns an error if the plaintext buffer is not long enough.

IMPORTANT: the caller must check both the returned status and the success parameter to know if the tag is valid. The returned status may be OK even if the tag check did not succeed, if there were no errors during processing.

Parameters
ctxContext object for the operation.
auth_tagAuthentication tag to check.
tag_lenLength of authentication tag.
[out]plaintextDecrypted output data.
[out]plaintext_bytes_writtenNumber of bytes written to plaintext.
[out]successWhether the tag passed verification.
Returns
Result of the final operation.

Definition at line 466 of file aes_gcm.c.

◆ otcrypto_aes_gcm_decrypt_init()

otcrypto_status_t otcrypto_aes_gcm_decrypt_init ( const otcrypto_blinded_key_t key,
otcrypto_const_word32_buf_t  iv,
otcrypto_aes_gcm_context_t ctx 
)

Initializes the AES-GCM authenticated decryption operation.

The order of operations for decryption is:

Associated data must be added first, before encrypted data; the caller may not call otcrypto_aes_gcm_udpate_aad() after the first call to otcrypto_aes_gcm_update_encrypted_data().

The resulting AES-GCM context will include pointers into the keyblob of the blinded key. It is important that the blinded key (or at least the keyblob) remains live as long as ctx is. The IV is safe to free.

IMPORTANT: Although this routine produces decrypted data incrementally, it is the caller's responsibility to ensure that they do not trust the decrypted data until the tag check passes.

Parameters
keyPointer to the blinded key struct.
ivInitialization vector for the decryption function.
[out]ctxContext object for the operation.
Returns
Result of the initialization operation.

Definition at line 338 of file aes_gcm.c.

◆ otcrypto_aes_gcm_encrypt()

Performs the AES-GCM authenticated encryption operation.

This function encrypts the input plaintext to produce an output ciphertext. Together it generates an authentication tag auth_tag on the ciphered data and any non-confidential additional authenticated data aad.

The caller should allocate space for the ciphertext buffer, (same length as input), auth_tag buffer (same as tag_len), and set the length of expected outputs in the len field of ciphertext and auth_tag. If the user-set length and the output length does not match, an error message will be returned.

Parameters
keyPointer to the blinded gcm-key struct.
plaintextInput data to be encrypted and authenticated.
ivInitialization vector for the encryption function.
aadAdditional authenticated data.
tag_lenLength of authentication tag to be generated.
[out]ciphertextEncrypted output data, same length as input data.
[out]auth_tagGenerated authentication tag.
Returns
Result of the authenticated encryption. operation

Definition at line 230 of file aes_gcm.c.

◆ otcrypto_aes_gcm_encrypt_final()

otcrypto_status_t otcrypto_aes_gcm_encrypt_final ( otcrypto_aes_gcm_context_t ctx,
otcrypto_aes_gcm_tag_len_t  tag_len,
otcrypto_byte_buf_t  ciphertext,
size_t *  ciphertext_bytes_written,
otcrypto_word32_buf_t  auth_tag 
)

Finishes the AES-GCM authenticated encryption operation.

Processes any remaining plaintext from the context and computes the authentication tag and up to 1 block of ciphertext.

The caller should allocate space for the ciphertext and tag buffers and set the len fields accordingly. This function returns the ciphertext_bytes_written parameter with the number of bytes written to ciphertext, which is always either 16 or 0. This function returns an error if the ciphertext or tag buffer is not long enough.

Parameters
ctxContext object for the operation.
tag_lenLength of authentication tag to be generated.
[out]ciphertextEncrypted output data.
[out]ciphertext_bytes_writtenNumber of bytes written to ciphertext.
[out]auth_tagGenerated authentication tag.
Returns
Result of the final operation.

Definition at line 427 of file aes_gcm.c.

◆ otcrypto_aes_gcm_encrypt_init()

otcrypto_status_t otcrypto_aes_gcm_encrypt_init ( const otcrypto_blinded_key_t key,
otcrypto_const_word32_buf_t  iv,
otcrypto_aes_gcm_context_t ctx 
)

Initializes the AES-GCM authenticated encryption operation.

The order of operations for encryption is:

Associated data must be added first, before encrypted data; the caller may not call otcrypto_aes_gcm_udpate_aad() after the first call to otcrypto_aes_gcm_update_encrypted_data().

The resulting AES-GCM context will include pointers into the keyblob of the blinded key. It is important that the blinded key (or at least the keyblob) remains live as long as ctx is. The IV is safe to free.

Parameters
keyPointer to the blinded key struct.
ivInitialization vector for the encryption function.
[out]ctxContext object for the operation.
Returns
Result of the initialization operation.

Definition at line 316 of file aes_gcm.c.

◆ otcrypto_aes_gcm_update_aad()

otcrypto_status_t otcrypto_aes_gcm_update_aad ( otcrypto_aes_gcm_context_t ctx,
otcrypto_const_byte_buf_t  aad 
)

Updates additional authenticated data for an AES-GCM operation.

May be used for either encryption or decryption. Call otcrypto_aes_gcm_encrypt_init or otcrypto_aes_gcm_decrypt_init first.

Parameters
ctxContext object for the operation, updated in place.
aadAdditional authenticated data.
Returns
Result of the update operation.

Definition at line 360 of file aes_gcm.c.

◆ otcrypto_aes_gcm_update_encrypted_data()

otcrypto_status_t otcrypto_aes_gcm_update_encrypted_data ( otcrypto_aes_gcm_context_t ctx,
otcrypto_const_byte_buf_t  input,
otcrypto_byte_buf_t  output,
size_t *  output_bytes_written 
)

Updates authenticated-and-encrypted data for an AES-GCM operation.

May be used for either encryption or decryption. Call otcrypto_aes_gcm_encrypt_init or otcrypto_aes_gcm_decrypt_init first.

The caller should allocate space for the output and set the len field accordingly.

For encryption, input is the plaintext and output is the ciphertext; for decryption, they are reversed. The output must always be long enough to store all full 128-bit blocks of encrypted data received so far minus all output produced so far; rounding the input length to the next 128-bit boundary is always enough, but if the caller knows the exact byte-length of input so far they can calculate it exactly. Returns an error if output is not long enough; if output is overly long, only the first output_bytes_written bytes will be used.

Parameters
ctxContext object for the operation, updated in place.
inputPlaintext for encryption, ciphertext for decryption.
[out]outputCiphertext for encryption, plaintext for decryption.
[out]output_bytes_writtenNumber of bytes written to output.
Returns
Result of the update operation.

Definition at line 385 of file aes_gcm.c.