29#if !defined(MBEDTLS_CONFIG_FILE)
32#include MBEDTLS_CONFIG_FILE
49#define MBEDTLS_ERR_CMAC_HW_ACCEL_FAILED -0x007A
51#define MBEDTLS_AES_BLOCK_SIZE 16
52#define MBEDTLS_DES3_BLOCK_SIZE 8
54#if defined(MBEDTLS_AES_C)
55#define MBEDTLS_CIPHER_BLKSIZE_MAX 16
57#define MBEDTLS_CIPHER_BLKSIZE_MAX 8
60#if !defined(MBEDTLS_CMAC_ALT)
99 const unsigned char *key,
size_t keybits );
118 const unsigned char *input,
size_t ilen );
136 unsigned char *output );
177 const unsigned char *key,
size_t keylen,
178 const unsigned char *input,
size_t ilen,
179 unsigned char *output );
181#if defined(MBEDTLS_AES_C)
199int mbedtls_aes_cmac_prf_128(
const unsigned char *key,
size_t key_len,
200 const unsigned char *input,
size_t in_len,
201 unsigned char output[16] );
204#if defined(MBEDTLS_SELF_TEST) && ( defined(MBEDTLS_AES_C) || defined(MBEDTLS_DES_C) )
211int mbedtls_cmac_self_test(
int verbose );
This file contains an abstraction interface for use with the cipher primitives provided by the librar...
Configuration options (set of defines)
int mbedtls_cipher_cmac_update(mbedtls_cipher_context_t *ctx, const unsigned char *input, size_t ilen)
This function feeds an input buffer into an ongoing CMAC computation.
int mbedtls_cipher_cmac_reset(mbedtls_cipher_context_t *ctx)
This function prepares the authentication of another message with the same key as the previous CMAC o...
int mbedtls_cipher_cmac_finish(mbedtls_cipher_context_t *ctx, unsigned char *output)
This function finishes the CMAC operation, and writes the result to the output buffer.
#define MBEDTLS_CIPHER_BLKSIZE_MAX
The longest block used by CMAC is that of 3DES.
int mbedtls_cipher_cmac_starts(mbedtls_cipher_context_t *ctx, const unsigned char *key, size_t keybits)
This function sets the CMAC key, and prepares to authenticate the input data.
int mbedtls_cipher_cmac(const mbedtls_cipher_info_t *cipher_info, const unsigned char *key, size_t keylen, const unsigned char *input, size_t ilen, unsigned char *output)
This function calculates the full generic CMAC on the input buffer with the provided key.
The CMAC context structure.
size_t unprocessed_len
The length of data pending processing.
unsigned char state[8]
The internal state of the CMAC algorithm.
unsigned char unprocessed_block[8]
Unprocessed data - either data that was not block aligned and is still pending processing,...