#ifndef _AES_H_ #define _AES_H_ #include void AES128_ECB_encrypt(uint8_t* input, uint8_t* key, uint8_t *output); void AES128_ECB_decrypt(uint8_t* input, uint8_t* key, uint8_t *output); #endif //_AES_H_