11 lines
170 B
C
11 lines
170 B
C
#ifndef _BSP_AES128_H_
|
|
#define _BSP_AES128_H_
|
|
|
|
|
|
|
|
void aes128_init(uint8_t *aes_key);
|
|
void aes128_operation(uint8_t type,uint8_t *source_data,uint8_t *aes_data);
|
|
|
|
|
|
#endif
|