tiny-AES-c/aes.h

10 lines
228 B
C
Raw Normal View History

2014-05-29 04:20:28 +04:00
#ifndef _AES_H_
#define _AES_H_
#include <stdint.h>
2014-12-08 11:53:05 +03:00
void AES128_ECB_encrypt(uint8_t* input, const uint8_t* key, uint8_t *output);
void AES128_ECB_decrypt(uint8_t* input, const uint8_t* key, uint8_t *output);
2014-05-29 04:20:28 +04:00
#endif //_AES_H_