mbed TLS v2.2.0
|
#include <cipher.h>
Data Fields | |
const mbedtls_cipher_info_t * | cipher_info |
Information about the associated cipher. More... | |
int | key_bitlen |
Key length to use. More... | |
mbedtls_operation_t | operation |
Operation that the context's key has been initialised for. More... | |
unsigned char | unprocessed_data [MBEDTLS_MAX_BLOCK_LENGTH] |
Buffer for data that hasn't been encrypted yet. More... | |
size_t | unprocessed_len |
Number of bytes that still need processing. More... | |
unsigned char | iv [MBEDTLS_MAX_IV_LENGTH] |
Current IV or NONCE_COUNTER for CTR-mode. More... | |
size_t | iv_size |
IV size in bytes (for ciphers with variable-length IVs) More... | |
void * | cipher_ctx |
Cipher-specific context. More... | |
void* mbedtls_cipher_context_t::cipher_ctx |
const mbedtls_cipher_info_t* mbedtls_cipher_context_t::cipher_info |
Information about the associated cipher.
Definition at line 215 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] |
size_t mbedtls_cipher_context_t::iv_size |
IV size in bytes (for ciphers with variable-length IVs)
Definition at line 239 of file cipher.h.
Referenced by mbedtls_cipher_get_iv_size().
int mbedtls_cipher_context_t::key_bitlen |
mbedtls_operation_t mbedtls_cipher_context_t::operation |
Operation that the context's key has been initialised for.
Definition at line 221 of file cipher.h.
Referenced by mbedtls_cipher_get_operation().
unsigned char mbedtls_cipher_context_t::unprocessed_data[MBEDTLS_MAX_BLOCK_LENGTH] |
size_t mbedtls_cipher_context_t::unprocessed_len |