1
0
Fork 0
nrf51-cryptolib/cmac.h

12 lines
271 B
C
Raw Normal View History

2016-06-01 15:07:50 -04:00
#pragma once
#include <stdbool.h>
#include <strings.h>
#include "block.h"
block_t cmac_aes128(uint8_t *, size_t);
void cmac_aes128_expand_key(block_t *, block_t *);
void cmac_aes128_init(block_t *);
void cmac_truncate_tag(uint8_t *, block_t *, uint_fast8_t);