mbedTLS + 0/1 examples
SourceVu will show references to mbedtls_cipher_context_t from the following samples and libraries:
 
Symbols
loading...
Files
loading...
SummarySyntaxRelatedExamplesReferencesInstances

Fields

Field
Declared as
Description
private_cipher_info
Information about the associated cipher.
private_key_bitlen
Key length to use.
private_operation
Operation that the key of the context has been initialized for.
private_add_padding
void(*MBEDTLS_PRIVATE(add_padding))(unsigned char *output, size_t olen, size_t data_len)
Padding functions to use, if relevant for the specific cipher mode.
private_get_padding
int(*MBEDTLS_PRIVATE(get_padding))(unsigned char *input, size_t ilen, size_t *data_len)
private_unprocessed_data
unsigned char MBEDTLS_PRIVATE(unprocessed_data)[MBEDTLS_MAX_BLOCK_LENGTH]
Buffer for input that has not been processed yet.
private_unprocessed_len
Number of Bytes that have not been processed yet.
private_iv
Current IV or NONCE_COUNTER for CTR-mode, data unit (or sector) number for XTS-mode.
private_iv_size
IV size in Bytes, for ciphers with variable-length IVs.
private_cipher_ctx
The cipher-specific context.
private_cmac_ctx
CMAC-specific context.
void(*MBEDTLS_PRIVATE(add_padding))(unsigned char *output, size_t olen, size_t data_len)
Padding functions to use, if relevant for the specific cipher mode.
int(*MBEDTLS_PRIVATE(get_padding))(unsigned char *input, size_t ilen, size_t *data_len)
unsigned char MBEDTLS_PRIVATE(unprocessed_data)[MBEDTLS_MAX_BLOCK_LENGTH]
Buffer for input that has not been processed yet.
size_t MBEDTLS_PRIVATE(unprocessed_len
Number of Bytes that have not been processed yet.
Current IV or NONCE_COUNTER for CTR-mode, data unit (or sector) number for XTS-mode.
size_t MBEDTLS_PRIVATE(iv_size
IV size in Bytes, for ciphers with variable-length IVs.
void *MBEDTLS_PRIVATE(cipher_ctx
The cipher-specific context.
CMAC-specific context.
Information about the associated cipher.
int MBEDTLS_PRIVATE(key_bitlen
Key length to use.
Operation that the key of the context has been initialized for.

References

from 0/1 examples