altosdroid: initial attempt at a UI.
[fw/altos] / src / core / 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 void
33 ao_aes_isr(void) __interrupt 4;
34 #endif
35
36 void
37 ao_aes_set_mode(enum ao_aes_mode mode);
38
39 void
40 ao_aes_set_key(__xdata uint8_t *in);
41
42 void
43 ao_aes_zero_iv(void);
44
45 void
46 ao_aes_run(__xdata uint8_t *in,
47            __xdata uint8_t *out);
48
49 void
50 ao_aes_init(void);
51
52 /* ao_radio_cmac.c */
53
54 int8_t
55 ao_radio_cmac_send(__xdata void *packet, uint8_t len) __reentrant;
56
57 #define AO_RADIO_CMAC_OK        0
58 #define AO_RADIO_CMAC_LEN_ERROR -1
59 #define AO_RADIO_CMAC_CRC_ERROR -2
60 #define AO_RADIO_CMAC_MAC_ERROR -3
61 #define AO_RADIO_CMAC_TIMEOUT   -4
62
63 int8_t
64 ao_radio_cmac_recv(__xdata void *packet, uint8_t len, uint16_t timeout) __reentrant;
65
66 void
67 ao_radio_cmac_init(void);
68
69 #endif /* _AO_AES_H_ */