sdk-ameba-v4.0b_without_nda.../component/common/application/wigadget/encrypt.h

25 lines
305 B
C
Raw Normal View History

2017-10-15 06:36:37 +00:00
#ifndef _WI_ENCRYPT_H_
#define _WI_ENCRYPT_H_
#include "rom_aes.h"
typedef union
{ unsigned int l;
unsigned char b[4];
} aes_inf;
typedef struct
{
aes_context ctx;
aes_inf inf;
} aes_encrypt_ctx;
typedef struct
{
aes_context ctx;
aes_inf inf;
} aes_decrypt_ctx;
#endif