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

#include <stdint.h>

int aes_crypt(uint8_t *key, uint8_t *data, uint8_t *result);
int aes_done(void);

#endif