]> git.cryptolib.org Git - arm-crypto-lib.git/blob - test_src/main-arcfour-test.c
adding mickey128
[arm-crypto-lib.git] / test_src / main-arcfour-test.c
1 /* main-arcfour-test.c */
2 /*
3     This file is part of the ARM-Crypto-Lib.
4     Copyright (C) 2006-2011  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  * arcfour (RC4 compatible) test-suit
21  * 
22 */
23 #include "main-test-common.h"
24
25 #include "arcfour.h"
26 #include "scal_arcfour.h"
27
28 #include "scal-nessie.h"
29 #include "nessie_stream_test.h"
30 #include "performance_test.h"
31
32
33 const char* algo_name = "Arcfour";
34
35
36 /*****************************************************************************
37  *  additional validation-functions                                                                                      *
38  *****************************************************************************/
39
40
41
42 void testrun_nessie_arcfour(void){
43         scal_nessie_run(&arcfour_desc);
44 }
45
46 void testrun_performance_arcfour(void){
47         uint64_t t;
48         char str[16];
49         uint8_t key[16];
50         arcfour_ctx_t ctx;
51         
52         calibrateTimer();
53         print_overhead();       
54         
55         memset(key,  0, 16);
56         
57         startTimer(1);
58         arcfour_init(key, 16, &ctx);
59         t = stopTimer();
60         cli_putstr("\r\n\tctx-gen time: ");
61         ultoa((unsigned long)t, str, 10);
62         cli_putstr(str);        
63         
64         startTimer(1);
65         arcfour_gen(&ctx);
66         t = stopTimer();
67         cli_putstr("\r\n\tencrypt time: ");
68         ultoa((unsigned long)t, str, 10);
69         cli_putstr(str);        
70         
71         cli_putstr("\r\n");
72 }
73
74
75 /*****************************************************************************
76  *  main                                                                                                                                         *
77  *****************************************************************************/
78
79 const cmdlist_entry_t cmdlist[] = {
80         { "nessie",      NULL, testrun_nessie_arcfour },
81         { "test",        NULL, testrun_nessie_arcfour},
82         { "performance", NULL, testrun_performance_arcfour},
83         { "echo",    (void*)1, (void_fpt)echo_ctrl},
84         { NULL,            NULL, NULL}
85 };
86
87 int main (void){
88         main_setup();
89         
90         for(;;){
91                 welcome_msg(algo_name);
92                 cmd_interface(cmdlist);
93         }
94 }