]> git.cryptolib.org Git - avr-crypto-lib.git/blob - skein.h
94eceacd1020594db1bc0eece817adfe2684f418
[avr-crypto-lib.git] / skein.h
1 /* skein.h */
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
27 #ifndef SKEIN_H_
28 #define SKEIN_H_
29
30 #include "ubi.h"
31
32 typedef struct{
33          uint16_t outsize_b;
34          ubi256_ctx_t ubictx;
35 }skein256_ctx_t;
36
37 void skein256_init(skein256_ctx_t* ctx, uint16_t outsize_b);
38 void skein256_nextBlock(skein256_ctx_t* ctx, void* block);
39 void skein256_lastBlock(skein256_ctx_t* ctx, void* block, uint16_t length_b);
40 void skein256_ctx2hash(void* dest, skein256_ctx_t* ctx);
41
42 typedef struct{
43          uint16_t outsize_b;
44          ubi512_ctx_t ubictx;
45 }skein512_ctx_t;
46
47 void skein512_init(skein512_ctx_t* ctx, uint16_t outsize_b);
48 void skein512_nextBlock(skein512_ctx_t* ctx, void* block);
49 void skein512_lastBlock(skein512_ctx_t* ctx, void* block, uint16_t length_b);
50 void skein512_ctx2hash(void* dest, skein512_ctx_t* ctx);
51
52 typedef struct{
53          uint16_t outsize_b;
54          ubi1024_ctx_t ubictx;
55 }skein1024_ctx_t;
56
57 void skein1024_init(skein1024_ctx_t* ctx, uint16_t outsize_b);
58 void skein1024_nextBlock(skein1024_ctx_t* ctx, void* block);
59 void skein1024_lastBlock(skein1024_ctx_t* ctx, void* block, uint16_t length_b);
60 void skein1024_ctx2hash(void* dest, skein1024_ctx_t* ctx);
61
62 #endif /* SKEIN_H_ */