You've already forked Frequency_Inverter
mirror of
https://github.com/Indemsys/Frequency_Inverter.git
synced 2026-04-19 17:44:31 +00:00
12 lines
169 B
C
12 lines
169 B
C
#ifndef __AES_H
|
|
#define __AES_H
|
|
|
|
|
|
#define KEY_COUNT 3
|
|
|
|
extern void aesInit(void);
|
|
extern void aesDecrypt(unsigned char *buffer, unsigned char *chainBlock);
|
|
|
|
#endif
|
|
|