Update aes.h

This commit is contained in:
kokke 2014-06-03 01:00:40 +02:00
parent 325313fbe2
commit 376f23ab98

2
aes.h
View File

@ -3,6 +3,6 @@
#include <stdint.h>
void AES128_ECB(uint8_t* input, uint8_t* key, uint8_t *output);
void AES128_ECB_encrypt(uint8_t* input, uint8_t* key, uint8_t *output);
#endif //_AES_H_