mbedtls_cipher_base_t is only used within mbed TLS Library.
 
Symbols
loading...
Files
loading...
SummarySyntaxReferences

Fields

Field
Declared as
Description
int (*)(void *ctx, const unsigned char *key, unsigned int key_bitlen)
Set key for encryption purposes.
int (*)(void *ctx, const unsigned char *key, unsigned int key_bitlen)
Set key for decryption purposes.
void * (*)(void)
Allocate a new context.
void (*)(void *ctx)
Free the given context.
Base Cipher type (e.g. MBEDTLS_CIPHER_ID_AES).
int (*)(void *ctx, mbedtls_operation_t mode, const unsigned char *input, unsigned char *output)
Encrypt using ECB.
int (*)(void *ctx, mbedtls_operation_t mode, size_t length, unsigned char *iv, const unsigned char *input, unsigned char *output)
Encrypt using CBC.

References

from examples