summaryrefslogtreecommitdiffstats
path: root/aes.h
blob: eae5bb2222f73c6282fb9804efabf383400f8869 (plain) (blame)
1
2
3
4
5
6
7
8
9
#ifndef _AES_H_
#define _AES_H_

#include <stdint.h>

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);

#endif //_AES_H_