]> git.cryptolib.org Git - avr-crypto-lib.git/blob - threefish.h
73871a48302b229853e966d47dacba4291eb51d8
[avr-crypto-lib.git] / threefish.h
1 /* threefish.c */
2 /*
3     This file is part of the AVR-Crypto-Lib.
4     Copyright (C) 2009  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  * \author  Daniel Otte
21  * \email   daniel.otte@rub.de
22  * \date    2009-03-12
23  * \license GPLv3 or later
24  */
25
26 #ifndef THREEFISH_H_
27 #define THREEFISH_H_
28
29 #include <stdint.h>
30
31 typedef struct{
32         uint64_t k[5];
33         uint64_t t[3];
34 } threefish256_ctx_t;
35
36
37 typedef struct{
38         uint64_t k[9];
39         uint64_t t[3];
40 } threefish512_ctx_t;
41
42
43 typedef struct{
44         uint64_t k[17];
45         uint64_t t[3];
46 } threefish1024_ctx_t;
47
48
49
50 void threefish256_init(void* key, void* tweak, threefish256_ctx_t* ctx);
51 void threefish512_init(void* key, void* tweak, threefish512_ctx_t* ctx);
52 void threefish1024_init(void* key, void* tweak, threefish1024_ctx_t* ctx);
53
54 void threefish256_enc(void* data, threefish256_ctx_t* ctx);
55 void threefish512_enc(void* data, threefish512_ctx_t* ctx);
56 void threefish1024_enc(void* data, threefish1024_ctx_t* ctx);
57
58 #endif /* THREEFISH_H_ */