Merge remote-tracking branch 'mjb/master'
[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 #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 /* ao_radio_cmac.c */
55
56 int8_t
57 ao_radio_cmac_send(__xdata void *packet, uint8_t len) __reentrant;
58
59 #define AO_RADIO_CMAC_OK        0
60 #define AO_RADIO_CMAC_LEN_ERROR -1
61 #define AO_RADIO_CMAC_CRC_ERROR -2
62 #define AO_RADIO_CMAC_MAC_ERROR -3
63 #define AO_RADIO_CMAC_TIMEOUT   -4
64
65 int8_t
66 ao_radio_cmac_recv(__xdata void *packet, uint8_t len, uint16_t timeout) __reentrant;
67
68 void
69 ao_radio_cmac_init(void);
70
71 #endif /* _AO_AES_H_ */