diff options
-rw-r--r-- | aes.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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_ |
index : anonymous/tiny-AES-c | ||
Small portable AES128/192/256 in C | mirror |
summaryrefslogtreecommitdiffstats |
-rw-r--r-- | aes.h | 8 |
@@ -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_ |