mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
89 lines
2.2 KiB
C
89 lines
2.2 KiB
C
/*
|
|
* Copyright (C) 2016 Fundación Inria Chile
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @defgroup sys_hashes_aes128_cmac AES128_CMAC
|
|
* @ingroup sys_hashes_keyed
|
|
* @brief Implementation of the AES128 CMAC hashing function
|
|
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief AES128_CMAC interface definition
|
|
*
|
|
* @author José Ignacio Alamos <jose.alamos@inria.cl>
|
|
*/
|
|
|
|
#ifndef HASHES_AES128_CMAC_H
|
|
#define HASHES_AES128_CMAC_H
|
|
|
|
#include <stdio.h>
|
|
#include "crypto/ciphers.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief Length of AES128_CMAC block in bytes
|
|
*/
|
|
#define AES128_CMAC_BLOCK_SIZE 16
|
|
|
|
/**
|
|
* @brief AES128_CMAC calculation context
|
|
*/
|
|
typedef struct {
|
|
/** AES128 context */
|
|
cipher_t aes128_ctx;
|
|
/** auxiliary array for CMAC calculations **/
|
|
uint8_t X[AES128_CMAC_BLOCK_SIZE];
|
|
/** current last block **/
|
|
uint8_t M_last[AES128_CMAC_BLOCK_SIZE];
|
|
/** last byte in last block */
|
|
uint32_t M_n;
|
|
} aes128_cmac_context_t;
|
|
|
|
/**
|
|
* @brief Initialize AES128 CMAC message digest context
|
|
*
|
|
* @param[in] ctx Pointer to the AES128 CMAC context to initialize
|
|
* @param[in] key Key to be set
|
|
* @param[in] key_size Size of the key
|
|
*
|
|
* @return CIPHER_INIT_SUCCESS if the initialization was successful.
|
|
* CIPHER_ERR_INVALID_KEY_SIZE if the key size is not valid.
|
|
*/
|
|
int aes128_cmac_init(aes128_cmac_context_t *ctx,
|
|
const uint8_t *key, uint8_t key_size);
|
|
|
|
/**
|
|
* @brief Update the AES128 CMAC context with a portion of the message being
|
|
* hashed
|
|
*
|
|
* @param[in] ctx Pointer to the AES128 CMAC context to update
|
|
* @param[in] data Input data
|
|
* @param[in] len Length of @p data
|
|
*/
|
|
void aes128_cmac_update(aes128_cmac_context_t *ctx,
|
|
const void *data, size_t len);
|
|
|
|
/**
|
|
* @brief Finalizes the CMAC message digest
|
|
*
|
|
* @param[in] ctx Pointer to the AES128 CMAC context
|
|
* @param[out] digest Result location
|
|
*/
|
|
void aes128_cmac_final(aes128_cmac_context_t *ctx, void *digest);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* HASHES_AES128_CMAC_H */
|
|
/** @} */
|