OPTIGA Trust M  1.1.0
C++ library for Optiga Trust M Chip Security Controller
mbedtls_cipher_context_t Struct Reference

#include <cipher.h>

Collaboration diagram for mbedtls_cipher_context_t:

Public Attributes

const mbedtls_cipher_info_tcipher_info
 
int key_bitlen
 
mbedtls_operation_t operation
 
unsigned char unprocessed_data [MBEDTLS_MAX_BLOCK_LENGTH]
 
size_t unprocessed_len
 
unsigned char iv [MBEDTLS_MAX_IV_LENGTH]
 
size_t iv_size
 
void * cipher_ctx
 

Detailed Description

Generic cipher context.

Member Data Documentation

◆ cipher_ctx

void* mbedtls_cipher_context_t::cipher_ctx

The cipher-specific context.

◆ cipher_info

const mbedtls_cipher_info_t* mbedtls_cipher_context_t::cipher_info

Information about the associated cipher.

◆ iv

unsigned char mbedtls_cipher_context_t::iv[MBEDTLS_MAX_IV_LENGTH]

Current IV or NONCE_COUNTER for CTR-mode, data unit (or sector) number for XTS-mode.

◆ iv_size

size_t mbedtls_cipher_context_t::iv_size

IV size in Bytes, for ciphers with variable-length IVs.

◆ key_bitlen

int mbedtls_cipher_context_t::key_bitlen

Key length to use.

◆ operation

mbedtls_operation_t mbedtls_cipher_context_t::operation

Operation that the key of the context has been initialized for.

◆ unprocessed_data

unsigned char mbedtls_cipher_context_t::unprocessed_data[MBEDTLS_MAX_BLOCK_LENGTH]

Buffer for input that has not been processed yet.

◆ unprocessed_len

size_t mbedtls_cipher_context_t::unprocessed_len

Number of Bytes that have not been processed yet.


The documentation for this struct was generated from the following file: