mbed TLS  Version 2.6.0
SSL/TLS Library for the Embedded Space
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mbedtls_cipher_base_t Struct Reference

Base cipher information. More...

Data Fields

mbedtls_cipher_id_t cipher
 Base Cipher type (e.g. More...
 
int(* ecb_func )(void *ctx, mbedtls_operation_t mode, const unsigned char *input, unsigned char *output)
 Encrypt using ECB.
 
int(* cbc_func )(void *ctx, mbedtls_operation_t mode, size_t length, unsigned char *iv, const unsigned char *input, unsigned char *output)
 Encrypt using CBC.
 
int(* cfb_func )(void *ctx, mbedtls_operation_t mode, size_t length, size_t *iv_off, unsigned char *iv, const unsigned char *input, unsigned char *output)
 Encrypt using CFB (Full length)
 
int(* ctr_func )(void *ctx, size_t length, size_t *nc_off, unsigned char *nonce_counter, unsigned char *stream_block, const unsigned char *input, unsigned char *output)
 Encrypt using CTR.
 
int(* stream_func )(void *ctx, size_t length, const unsigned char *input, unsigned char *output)
 Encrypt using STREAM.
 
int(* setkey_enc_func )(void *ctx, const unsigned char *key, unsigned int key_bitlen)
 Set key for encryption purposes.
 
int(* setkey_dec_func )(void *ctx, const unsigned char *key, unsigned int key_bitlen)
 Set key for decryption purposes.
 
void *(* ctx_alloc_func )(void)
 Allocate a new context.
 
void(* ctx_free_func )(void *ctx)
 Free the given context.
 

Description

Base cipher information.

Base cipher information (opaque struct).

The non-mode specific functions and values.

Field Documentation

mbedtls_cipher_id_t cipher

Base Cipher type (e.g.

MBEDTLS_CIPHER_ID_AES)