]> git.cryptolib.org Git - avr-crypto-lib.git/blob - main-serpent-test.c
insereated GPLv3 stub
[avr-crypto-lib.git] / main-serpent-test.c
1 /* main-serpent-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  * serpent test-suit
21  * 
22 */
23
24 #include "config.h"
25 #include "serial-tools.h"
26 #include "uart.h"
27 #include "debug.h"
28
29 #include "serpent.h"
30 #include "nessie_bc_test.h"
31 #include "cli.h"
32 #include "performance_test.h"
33
34 #include <stdint.h>
35 #include <string.h>
36 #include <stdlib.h>
37
38 char* cipher_name = "Serpent";
39
40 /*****************************************************************************
41  *  additional validation-functions                                                                                      *
42  *****************************************************************************/
43 void serpent_genctx_dummy(uint8_t* key, uint16_t keysize, void* ctx){
44         serpent_genctx(key, keysize&0xff, ctx);
45 }
46
47 void testrun_nessie_serpent(void){
48         nessie_bc_ctx.blocksize_B =  16;
49         nessie_bc_ctx.keysize_b   = 128;
50         nessie_bc_ctx.name        = cipher_name;
51         nessie_bc_ctx.ctx_size_B  = sizeof(serpent_ctx_t);
52         nessie_bc_ctx.cipher_enc  = (nessie_bc_enc_fpt)serpent_enc;
53         nessie_bc_ctx.cipher_dec  = (nessie_bc_dec_fpt)serpent_dec;
54         nessie_bc_ctx.cipher_genctx  = (nessie_bc_gen_fpt)serpent_genctx_dummy;
55         
56         nessie_bc_run();
57         
58         nessie_bc_ctx.keysize_b   = 192;
59         nessie_bc_run();
60         
61         nessie_bc_ctx.keysize_b   = 256;
62         nessie_bc_run();
63 }
64
65
66 void testrun_performance_serpent(void){
67         uint16_t i,c;
68         uint64_t t;
69         char str[16];
70         uint8_t key[32], data[16];
71         serpent_ctx_t ctx;
72         
73         calibrateTimer();
74         getOverhead(&c, &i);
75         uart_putstr_P(PSTR("\r\n\r\n=== benchmark ==="));
76         utoa(c, str, 10);
77         uart_putstr_P(PSTR("\r\n\tconst overhead:     "));
78         uart_putstr(str);
79         utoa(i, str, 10);
80         uart_putstr_P(PSTR("\r\n\tinterrupt overhead: "));
81         uart_putstr(str);
82         
83         memset(key,  0, 32);
84         memset(data, 0, 16);
85         
86         startTimer(1);
87         serpent_genctx(key, 0, &ctx);
88         t = stopTimer();
89         uart_putstr_P(PSTR("\r\n\tctx-gen time: "));
90         ultoa((unsigned long)t, str, 10);
91         uart_putstr(str);
92         
93         
94         startTimer(1);
95         serpent_enc(data, &ctx);
96         t = stopTimer();
97         uart_putstr_P(PSTR("\r\n\tencrypt time: "));
98         ultoa((unsigned long)t, str, 10);
99         uart_putstr(str);
100         
101         
102         startTimer(1);
103         serpent_dec(data, &ctx);
104         t = stopTimer();
105         uart_putstr_P(PSTR("\r\n\tdecrypt time: "));
106         ultoa((unsigned long)t, str, 10);
107         uart_putstr(str);
108         
109         uart_putstr_P(PSTR("\r\n"));
110 }
111 /*****************************************************************************
112  *  main                                                                                                                                         *
113  *****************************************************************************/
114
115 int main (void){
116         char  str[20];
117         DEBUG_INIT();
118         uart_putstr("\r\n");
119
120         uart_putstr_P(PSTR("\r\n\r\nCrypto-VS ("));
121         uart_putstr(cipher_name);
122         uart_putstr_P(PSTR(")\r\nloaded and running\r\n"));
123
124         PGM_P    u   = PSTR("nessie\0test\0performance\0");
125         void_fpt v[] = {testrun_nessie_serpent, testrun_nessie_serpent, testrun_performance_serpent};
126
127         while(1){ 
128                 if (!getnextwordn(str,20)){DEBUG_S("DBG: W1\r\n"); goto error;}
129                 if(execcommand_d0_P(str, u, v)<0){
130                         uart_putstr_P(PSTR("\r\nunknown command\r\n"));
131                 }
132                 continue;
133         error:
134                 uart_putstr("ERROR\r\n");
135         }
136         
137 }
138