forked from SZV10X_Software/SZV103_FM33A0xxEV_SiZhu

周巍
2024-04-11 91ef77c00ed797b1048c5187f416e351e646a009
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __AES128_h
#define __AES128_h
 
#include "stdint.h"
 
 
 
void AES128_ECB_encrypt(const uint8_t* input, const uint8_t* key, uint8_t *output);
void AES128_ECB_decrypt(const uint8_t* input, const uint8_t* key, uint8_t *output);
 
 
extern uint8_t KVer_AES_128_xinao[9][16];
extern uint8_t KVer_AES_128[9][16];
extern uint8_t yushu_16;              //AES????????16???
extern uint8_t shang_16;              //AES????????16???
 
#endif