#include <cipher.h>
Data Fields | |
const mbedtls_cipher_info_t * | cipher_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 |
Generic cipher context.
Definition at line 272 of file cipher.h.
Information about the associated cipher.
Definition at line 274 of file cipher.h.
Referenced by mbedtls_cipher_get_block_size(), mbedtls_cipher_get_cipher_mode(), mbedtls_cipher_get_iv_size(), mbedtls_cipher_get_key_bitlen(), mbedtls_cipher_get_name(), mbedtls_cipher_get_operation(), and mbedtls_cipher_get_type().
unsigned char mbedtls_cipher_context_t::iv[MBEDTLS_MAX_IV_LENGTH] |
IV size in Bytes, for ciphers with variable-length IVs.
Definition at line 302 of file cipher.h.
Referenced by mbedtls_cipher_get_iv_size().
Operation that the key of the context has been initialized for.
Definition at line 282 of file cipher.h.
Referenced by mbedtls_cipher_get_operation().
unsigned char mbedtls_cipher_context_t::unprocessed_data[MBEDTLS_MAX_BLOCK_LENGTH] |