]> git.cryptolib.org Git - avr-crypto-lib.git/blob - main-shabea-test.c
insereated GPLv3 stub
[avr-crypto-lib.git] / main-shabea-test.c
1 /* main-shabea-test.c */
2 /*
3     This file is part of the Crypto-avr-lib/microcrypt-lib.
4     Copyright (C) 2008  Daniel Otte (daniel.otte@rub.de)
5
6     This program is free software: you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation, either version 3 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19 /**
20  * \file        main-shabea-test.c
21  * \author      Daniel Otte 
22  * \date        2007-06-07
23  * \brief       test suit for SHABEA
24  * \par License 
25  * GPL
26  * 
27  */
28 #include "config.h"
29 #include "serial-tools.h"
30 #include "uart.h"
31 #include "debug.h"
32
33 #include "shabea.h"
34
35 #include <stdint.h>
36 #include <string.h>
37 #include <util/delay.h>
38
39 /*****************************************************************************
40  *  additional validation-functions                                                                                      *
41  *****************************************************************************/
42
43 /*****************************************************************************
44  *  self tests                                                                                                                           *
45  *****************************************************************************/
46
47 void testencrypt(uint8_t* block, uint8_t* key){
48         uart_putstr("\r\n==testy-encrypt==\r\n key: ");
49         uart_hexdump(key,16);
50         uart_putstr("\r\n plain: ");
51         uart_hexdump(block,32);
52         _delay_ms(50);
53         shabea256(block,key,128,1,16);
54         uart_putstr("\r\n crypt: ");
55         uart_hexdump(block,32);
56 }
57
58 void testdecrypt(uint8_t* block, uint8_t* key){
59
60         uart_putstr("\r\n==testy-decrypt==\r\n key: ");
61         uart_hexdump(key,16);
62         uart_putstr("\r\n crypt: ");
63         uart_hexdump(block,32);
64         _delay_ms(50);
65         shabea256(block,key,128,0,16);
66         uart_putstr("\r\n plain: ");
67         uart_hexdump(block,32);
68 }
69
70 void testrun_shabea(void){
71         uint8_t keys[4][16]=
72                 { {     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
73                         0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
74                   {     0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
75                         0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f },
76                   { 0x47, 0x06, 0x48, 0x08, 0x51, 0xE6, 0x1B, 0xE8,
77                         0x5D, 0x74, 0xBF, 0xB3, 0xFD, 0x95, 0x61, 0x85 },
78                   { 0x28, 0xDB, 0xC3, 0xBC, 0x49, 0xFF, 0xD8, 0x7D,
79                         0xCF, 0xA5, 0x09, 0xB1, 0x1D, 0x42, 0x2B, 0xE7,}
80                 };
81         uint8_t datas[4][32]=
82                 { {     0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
83                         0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
84                         0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
85                         0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f },
86                   {     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
87                         0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
88                         0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
89                         0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
90                   { 0x83, 0xA2, 0xF8, 0xA2, 0x88, 0x64, 0x1F, 0xB9, 
91                         0xA4, 0xE9, 0xA5, 0xCC, 0x2F, 0x13, 0x1C, 0x7D,
92                         0x83, 0xA2, 0xF8, 0xA2, 0x88, 0x64, 0x1F, 0xB9, 
93                         0xA4, 0xE9, 0xA5, 0xCC, 0x2F, 0x13, 0x1C, 0x7D },
94                   { 0xB4, 0x1E, 0x6B, 0xE2, 0xEB, 0xA8, 0x4A, 0x14, 
95                         0x8E, 0x2E, 0xED, 0x84, 0x59, 0x3C, 0x5E, 0xC7,
96                         0xB4, 0x1E, 0x6B, 0xE2, 0xEB, 0xA8, 0x4A, 0x14, 
97                         0x8E, 0x2E, 0xED, 0x84, 0x59, 0x3C, 0x5E, 0xC7 }
98                 };
99         uint8_t i=0;
100         for(i=0; i<4; ++i){
101                 testencrypt(datas[i],keys[i]);
102                 testdecrypt(datas[i],keys[i]);  
103         }
104 //      testdecrypt(data,key);  
105 }
106
107
108
109 /*****************************************************************************
110  *  main                                                                                                                                         *
111  *****************************************************************************/
112
113 int main (void){
114         char str[20];
115
116         DEBUG_INIT();
117         uart_putstr("\r\n");
118
119         uart_putstr("\r\n\r\nCrypto-VS (shabea)\r\nloaded and running\r\n");
120
121 restart:
122         while(1){ 
123                 if (!getnextwordn(str,20))  {DEBUG_S("DBG: W1\r\n"); goto error;}
124                 if (strcmp(str, "test")) {DEBUG_S("DBG: 1b\r\n"); goto error;}
125                         testrun_shabea();
126                 goto restart;           
127                 continue;
128         error:
129                 uart_putstr("ERROR\r\n");
130         }
131         
132         
133 }
134