]> git.cryptolib.org Git - avr-crypto-lib.git/blob - test_src/nessie_common.h
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / test_src / nessie_common.h
1 /* nessie_common.h */
2 /*
3     This file is part of the AVR-Crypto-Lib.
4     Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org)
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  * 
21  * author: Daniel Otte
22  * email:  bg@nerilex.org
23  * license: GPLv3
24  * 
25  * common function for nessie-tests
26  * 
27  * */
28
29 #ifndef NESSIE_COMMON_H_
30 #define NESSIE_COMMON_H_
31
32 #define NESSIE_ALIVE_CHAR 0x06
33 #define NESSIE_ALIVE
34 #define NESSIE_USE_CLI
35
36 #include <stdint.h>
37 #include <stdio.h>
38
39 #ifdef NESSIE_ALIVE
40 #define NESSIE_SEND_ALIVE nessie_send_alive()
41 void nessie_send_alive(void);
42 #define NESSIE_SEND_ALIVE_A(i) nessie_send_alive_a(i)
43 void nessie_send_alive_a(uint16_t i);
44 #else
45 #define NESSIE_SEND_ALIVE 
46 #define NESSIE_SEND_ALIVE_A(i)  
47 #endif
48
49 /*
50 #ifdef NESSIE_USE_CLI
51 #include "cli.h"
52 #define NESSIE_PUTC cli_putc
53 #define NESSIE_PUTSTR cli_putstr
54 #define NESSIE_PUTSTR_P cli_putstr_P
55 #else
56 # error "direct uart output removed for nessie"
57 #endif
58 */
59
60 void nessie_set_output_stream(FILE *out_stream);
61
62 void nessie_print_block(uint8_t *block, uint16_t blocksize_bit);
63 void nessie_print_item(const char *name, uint8_t *buffer, uint16_t size_B);
64 void nessie_print_set_vector(uint8_t set, uint16_t vector);
65 void nessie_print_setheader(uint8_t set);
66 void nessie_print_header(const char *name,
67                          uint16_t keysize_b, 
68                          uint16_t blocksize_b,
69                          uint16_t hashsize_b, 
70                          uint16_t macsize_b,
71                          uint16_t ivsize_b );
72 void nessie_print_footer(void);
73
74 #endif /*NESSIE_COMMON_H_*/