]> git.cryptolib.org Git - avr-crypto-lib.git/blob - skein.h
f1362906d336a354f8df72cabc8b76d82b1764de
[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 #define SKEIN256_BLOCKSIZE    UBI256_BLOCKSIZE
33 #define SKEIN256_BLOCKSIZE_B  UBI256_BLOCKSIZE_B
34
35 #define SKEIN512_BLOCKSIZE    UBI512_BLOCKSIZE
36 #define SKEIN512_BLOCKSIZE_B  UBI512_BLOCKSIZE_B
37
38 #define SKEIN1024_BLOCKSIZE   UBI1024_BLOCKSIZE
39 #define SKEIN1024_BLOCKSIZE_B UBI1024_BLOCKSIZE_B
40
41 typedef struct{
42          uint16_t outsize_b;
43          ubi256_ctx_t ubictx;
44 }skein256_ctx_t;
45
46 void skein256_init(skein256_ctx_t* ctx, uint16_t outsize_b);
47 void skein256_nextBlock(skein256_ctx_t* ctx, const void* block);
48 void skein256_lastBlock(skein256_ctx_t* ctx, const void* block, uint16_t length_b);
49 void skein256_ctx2hash(void* dest, skein256_ctx_t* ctx);
50 void skein256(void* dest, uint16_t outlength_b, const void* msg, uint32_t length_b);
51
52 typedef struct{
53          uint16_t outsize_b;
54          ubi512_ctx_t ubictx;
55 }skein512_ctx_t;
56
57 void skein512_init(skein512_ctx_t* ctx, uint16_t outsize_b);
58 void skein512_nextBlock(skein512_ctx_t* ctx, const void* block);
59 void skein512_lastBlock(skein512_ctx_t* ctx, const void* block, uint16_t length_b);
60 void skein512_ctx2hash(void* dest, skein512_ctx_t* ctx);
61 void skein512(void* dest, uint16_t outlength_b, const void* msg, uint32_t length_b);
62
63 typedef struct{
64          uint16_t outsize_b;
65          ubi1024_ctx_t ubictx;
66 }skein1024_ctx_t;
67
68 void skein1024_init(skein1024_ctx_t* ctx, uint16_t outsize_b);
69 void skein1024_nextBlock(skein1024_ctx_t* ctx, const void* block);
70 void skein1024_lastBlock(skein1024_ctx_t* ctx, const void* block, uint16_t length_b);
71 void skein1024_ctx2hash(void* dest, skein1024_ctx_t* ctx);
72 void skein1024(void* dest, uint16_t outlength_b, const void* msg, uint32_t length_b);
73
74 #endif /* SKEIN_H_ */