3 This file is part of the AVR-Crypto-Lib.
4 Copyright (C) 2009 Daniel Otte (daniel.otte@rub.de)
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.
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.
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/>.
21 * \email daniel.otte@rub.de
23 * \license GPLv3 or later
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);
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);
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);