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

#include <stdint.h>

void AES128_ECB_encrypt(uint8_t* input, uint8_t* key, uint8_t *output);

#endif //_AES_H_