cc2420-aes.c

Go to the documentation of this file.
00001 /*
00002  * Copyright (c) 2008, Swedish Institute of Computer Science.
00003  * All rights reserved.
00004  *
00005  * Redistribution and use in source and binary forms, with or without
00006  * modification, are permitted provided that the following conditions
00007  * are met:
00008  * 1. Redistributions of source code must retain the above copyright
00009  *    notice, this list of conditions and the following disclaimer.
00010  * 2. Redistributions in binary form must reproduce the above copyright
00011  *    notice, this list of conditions and the following disclaimer in the
00012  *    documentation and/or other materials provided with the distribution.
00013  * 3. Neither the name of the Institute nor the names of its contributors
00014  *    may be used to endorse or promote products derived from this software
00015  *    without specific prior written permission.
00016  *
00017  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
00018  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00019  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00020  * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
00021  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
00022  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
00023  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
00024  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00025  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
00026  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
00027  * SUCH DAMAGE.
00028  *
00029  * This file is part of the Contiki operating system.
00030  *
00031  * $Id: cc2420-aes.c,v 1.5 2010/06/24 11:25:55 nifi Exp $
00032  */
00033 
00034 /**
00035  * \file
00036  *         AES encryption functions.
00037  * \author
00038  *         Adam Dunkels <adam@sics.se>
00039  */
00040 
00041 #include "contiki.h"
00042 #include "io.h"
00043 #include "dev/cc2420.h"
00044 #include "dev/cc2420-aes.h"
00045 #include "dev/spi.h"
00046 
00047 #define KEYLEN 16
00048 #define MAX_DATALEN 16
00049 
00050 #define CC2420_WRITE_RAM_REV(buffer,adr,count)               \
00051   do {                                                       \
00052     uint8_t i;                                               \
00053     CC2420_SPI_ENABLE();                                     \
00054     SPI_WRITE_FAST(0x80 | (adr & 0x7f));                     \
00055     SPI_WRITE_FAST((adr >> 1) & 0xc0);                       \
00056     for(i = (count); i > 0; i--) {                           \
00057       SPI_WRITE_FAST(((uint8_t*)(buffer))[i - 1]);           \
00058     }                                                        \
00059     SPI_WAITFORTx_ENDED();                                   \
00060     CC2420_SPI_DISABLE();                                    \
00061   } while(0)
00062 
00063 #define MIN(a,b) ((a) < (b)? (a): (b))
00064 
00065 /*---------------------------------------------------------------------------*/
00066 void
00067 cc2420_aes_set_key(const uint8_t *key, int index)
00068 {
00069   switch(index) {
00070   case 0:
00071     CC2420_WRITE_RAM_REV(key, CC2420RAM_KEY0, KEYLEN);
00072     break;
00073   case 1:
00074     CC2420_WRITE_RAM_REV(key, CC2420RAM_KEY1, KEYLEN);
00075     break;
00076   }
00077 }
00078 /*---------------------------------------------------------------------------*/
00079 /* Encrypt at most 16 bytes of data. */
00080 static void
00081 cipher16(uint8_t *data, int len)
00082 {
00083   uint8_t status;
00084 
00085   len = MIN(len, MAX_DATALEN);
00086 
00087   CC2420_WRITE_RAM(data, CC2420RAM_SABUF, len);
00088   CC2420_STROBE(CC2420_SAES);
00089   /* Wait for the encryption to finish */
00090   do {
00091     CC2420_GET_STATUS(status);
00092   } while(status & BV(CC2420_ENC_BUSY));
00093   CC2420_READ_RAM(data, CC2420RAM_SABUF, len);
00094 }
00095 /*---------------------------------------------------------------------------*/
00096 void
00097 cc2420_aes_cipher(uint8_t *data, int len, int key_index)
00098 {
00099   int i;
00100   uint16_t secctrl0;
00101 
00102   CC2420_READ_REG(CC2420_SECCTRL0, secctrl0);
00103 
00104   secctrl0 &= ~(CC2420_SECCTRL0_SAKEYSEL0 | CC2420_SECCTRL0_SAKEYSEL1);
00105 
00106   switch(key_index) {
00107   case 0:
00108     secctrl0 |= CC2420_SECCTRL0_SAKEYSEL0;
00109     break;
00110   case 1:
00111     secctrl0 |= CC2420_SECCTRL0_SAKEYSEL1;
00112     break;
00113   }
00114   CC2420_WRITE_REG(CC2420_SECCTRL0, secctrl0);
00115 
00116   for(i = 0; i < len; i = i + MAX_DATALEN) {
00117     cipher16(data + i, MIN(len - i, MAX_DATALEN));
00118   }
00119 }
00120 /*---------------------------------------------------------------------------*/

Generated on Mon Apr 11 14:23:27 2011 for Contiki 2.5 by  doxygen 1.6.1