OPTIGA Trust M  1.1.0
C++ library for Optiga Trust M Chip Security Controller
mbedtls_cipher_base_t Struct Reference

#include <cipher_internal.h>

Public Attributes

mbedtls_cipher_id_t cipher
 
int(* ecb_func )(void *ctx, mbedtls_operation_t mode, const unsigned char *input, unsigned char *output)
 
int(* setkey_enc_func )(void *ctx, const unsigned char *key, unsigned int key_bitlen)
 
int(* setkey_dec_func )(void *ctx, const unsigned char *key, unsigned int key_bitlen)
 
void *(* ctx_alloc_func )(void)
 
void(* ctx_free_func )(void *ctx)
 

Detailed Description

Base cipher information. The non-mode specific functions and values.

Member Data Documentation

◆ cipher

mbedtls_cipher_id_t mbedtls_cipher_base_t::cipher

Base Cipher type (e.g. MBEDTLS_CIPHER_ID_AES)

◆ ctx_alloc_func

void*(* mbedtls_cipher_base_t::ctx_alloc_func) (void)

Allocate a new context

◆ ctx_free_func

void(* mbedtls_cipher_base_t::ctx_free_func) (void *ctx)

Free the given context

◆ ecb_func

int(* mbedtls_cipher_base_t::ecb_func) (void *ctx, mbedtls_operation_t mode, const unsigned char *input, unsigned char *output)

Encrypt using ECB

◆ setkey_dec_func

int(* mbedtls_cipher_base_t::setkey_dec_func) (void *ctx, const unsigned char *key, unsigned int key_bitlen)

Set key for decryption purposes

◆ setkey_enc_func

int(* mbedtls_cipher_base_t::setkey_enc_func) (void *ctx, const unsigned char *key, unsigned int key_bitlen)

Set key for encryption purposes


The documentation for this struct was generated from the following file: