8 lines
221 B
C
Executable File
8 lines
221 B
C
Executable File
#ifndef AES128_H
|
|
#define AES128_H
|
|
|
|
void aes_init();
|
|
char aes_encrypt(unsigned char *input,unsigned char *output,unsigned char *key);
|
|
char aes_decrypt(unsigned char *input,unsigned char *output,unsigned char *key);
|
|
|
|
#endif |