altos: Move ao_config declarations to ao_config.h
[fw/altos] / src / kernel / ao_aes.h
1 /*
2  * Copyright © 2012 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #ifndef _AO_AES_H_
19 #define _AO_AES_H_
20
21 /* ao_aes.c */
22
23 extern __xdata uint8_t ao_aes_mutex;
24
25 /* AES keys and blocks are 128 bits */
26
27 enum ao_aes_mode {
28         ao_aes_mode_cbc_mac
29 };
30
31 #if HAS_AES
32 #ifdef SDCC
33 void
34 ao_aes_isr(void) __interrupt 4;
35 #endif
36 #endif
37
38 void
39 ao_aes_set_mode(enum ao_aes_mode mode);
40
41 void
42 ao_aes_set_key(__xdata uint8_t *in);
43
44 void
45 ao_aes_zero_iv(void);
46
47 void
48 ao_aes_run(__xdata uint8_t *in,
49            __xdata uint8_t *out);
50
51 void
52 ao_aes_init(void);
53
54 #endif /* _AO_AES_H_ */