3 This file is part of the ARM-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/>.
22 * \email daniel.otte@rub.de
24 * \license GPLv3 or later
34 #define SKEIN256_BLOCKSIZE UBI256_BLOCKSIZE
35 #define SKEIN256_BLOCKSIZE_B UBI256_BLOCKSIZE_B
37 #define SKEIN512_BLOCKSIZE UBI512_BLOCKSIZE
38 #define SKEIN512_BLOCKSIZE_B UBI512_BLOCKSIZE_B
40 #define SKEIN1024_BLOCKSIZE UBI1024_BLOCKSIZE
41 #define SKEIN1024_BLOCKSIZE_B UBI1024_BLOCKSIZE_B
48 void skein256_init(skein256_ctx_t* ctx, uint16_t outsize_b);
49 void skein256_nextBlock(skein256_ctx_t* ctx, const void* block);
50 void skein256_lastBlock(skein256_ctx_t* ctx, const void* block, uint16_t length_b);
51 void skein256_ctx2hash(void* dest, skein256_ctx_t* ctx);
52 void skein256(void* dest, uint16_t outlength_b, const void* msg, uint32_t length_b);
59 void skein512_init(skein512_ctx_t* ctx, uint16_t outsize_b);
60 void skein512_nextBlock(skein512_ctx_t* ctx, const void* block);
61 void skein512_lastBlock(skein512_ctx_t* ctx, const void* block, uint16_t length_b);
62 void skein512_ctx2hash(void* dest, skein512_ctx_t* ctx);
63 void skein512(void* dest, uint16_t outlength_b, const void* msg, uint32_t length_b);
70 void skein1024_init(skein1024_ctx_t* ctx, uint16_t outsize_b);
71 void skein1024_nextBlock(skein1024_ctx_t* ctx, const void* block);
72 void skein1024_lastBlock(skein1024_ctx_t* ctx, const void* block, uint16_t length_b);
73 void skein1024_ctx2hash(void* dest, skein1024_ctx_t* ctx);
74 void skein1024(void* dest, uint16_t outlength_b, const void* msg, uint32_t length_b);