Create aes.h

This commit is contained in:
kokke 2014-05-29 02:20:28 +02:00
parent be76dd85fe
commit 351447e6cc
1 changed files with 8 additions and 0 deletions

8
aes.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef _AES_H_
#define _AES_H_
#include <stdint.h>
void AES128_ECB(uint8_t* input, uint8_t* key, uint8_t *output);
#endif //_AES_H_