/* hfal_skein512.c */ /* This file is part of the ARM-Crypto-Lib. Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /** * \file hfal_skein512.c * \email daniel.otte@rub.de * \author Daniel Otte * \date 2009-03-13 * \license GPLv3 or later * */ #include #include "hashfunction_descriptor.h" #include "skein.h" static const char skein512_128_str[] = "Skein-512-128"; static const char skein512_160_str[] = "Skein-512-160"; static const char skein512_224_str[] = "Skein-512-224"; static const char skein512_256_str[] = "Skein-512-256"; static const char skein512_384_str[] = "Skein-512-384"; static const char skein512_512_str[] = "Skein-512-512"; static const char skein512_1024_str[] = "Skein-512-1024"; void skein512_128_init(skein512_ctx_t* ctx){ skein512_init(ctx, 128); } void skein512_160_init(skein512_ctx_t* ctx){ skein512_init(ctx, 160); } void skein512_224_init(skein512_ctx_t* ctx){ skein512_init(ctx, 224); } void skein512_256_init(skein512_ctx_t* ctx){ skein512_init(ctx, 256); } void skein512_384_init(skein512_ctx_t* ctx){ skein512_init(ctx, 384); } void skein512_512_init(skein512_ctx_t* ctx){ skein512_init(ctx, 512); } void skein512_1024_init(skein512_ctx_t* ctx){ skein512_init(ctx, 1024); } const hfdesc_t skein512_128_desc = { HFDESC_TYPE_HASHFUNCTION, 0, skein512_128_str, sizeof(skein512_ctx_t), SKEIN512_BLOCKSIZE, 128, (hf_init_fpt)skein512_128_init, (hf_nextBlock_fpt)skein512_nextBlock, (hf_lastBlock_fpt)skein512_lastBlock, (hf_ctx2hash_fpt)skein512_ctx2hash, (hf_free_fpt)NULL, (hf_mem_fpt)NULL }; const hfdesc_t skein512_160_desc = { HFDESC_TYPE_HASHFUNCTION, 0, skein512_160_str, sizeof(skein512_ctx_t), SKEIN512_BLOCKSIZE, 160, (hf_init_fpt)skein512_160_init, (hf_nextBlock_fpt)skein512_nextBlock, (hf_lastBlock_fpt)skein512_lastBlock, (hf_ctx2hash_fpt)skein512_ctx2hash, (hf_free_fpt)NULL, (hf_mem_fpt)NULL }; const hfdesc_t skein512_224_desc = { HFDESC_TYPE_HASHFUNCTION, 0, skein512_224_str, sizeof(skein512_ctx_t), SKEIN512_BLOCKSIZE, 224, (hf_init_fpt)skein512_224_init, (hf_nextBlock_fpt)skein512_nextBlock, (hf_lastBlock_fpt)skein512_lastBlock, (hf_ctx2hash_fpt)skein512_ctx2hash, (hf_free_fpt)NULL, (hf_mem_fpt)NULL }; const hfdesc_t skein512_256_desc = { HFDESC_TYPE_HASHFUNCTION, 0, skein512_256_str, sizeof(skein512_ctx_t), SKEIN512_BLOCKSIZE, 256, (hf_init_fpt)skein512_256_init, (hf_nextBlock_fpt)skein512_nextBlock, (hf_lastBlock_fpt)skein512_lastBlock, (hf_ctx2hash_fpt)skein512_ctx2hash, (hf_free_fpt)NULL, (hf_mem_fpt)NULL }; const hfdesc_t skein512_384_desc = { HFDESC_TYPE_HASHFUNCTION, 0, skein512_384_str, sizeof(skein512_ctx_t), SKEIN512_BLOCKSIZE, 384, (hf_init_fpt)skein512_384_init, (hf_nextBlock_fpt)skein512_nextBlock, (hf_lastBlock_fpt)skein512_lastBlock, (hf_ctx2hash_fpt)skein512_ctx2hash, (hf_free_fpt)NULL, (hf_mem_fpt)NULL }; const hfdesc_t skein512_512_desc = { HFDESC_TYPE_HASHFUNCTION, 0, skein512_512_str, sizeof(skein512_ctx_t), SKEIN512_BLOCKSIZE, 512, (hf_init_fpt)skein512_512_init, (hf_nextBlock_fpt)skein512_nextBlock, (hf_lastBlock_fpt)skein512_lastBlock, (hf_ctx2hash_fpt)skein512_ctx2hash, (hf_free_fpt)NULL, (hf_mem_fpt)NULL }; const hfdesc_t skein512_1024_desc = { HFDESC_TYPE_HASHFUNCTION, 0, skein512_1024_str, sizeof(skein512_ctx_t), SKEIN512_BLOCKSIZE, 1024, (hf_init_fpt)skein512_1024_init, (hf_nextBlock_fpt)skein512_nextBlock, (hf_lastBlock_fpt)skein512_lastBlock, (hf_ctx2hash_fpt)skein512_ctx2hash, (hf_free_fpt)NULL, (hf_mem_fpt)NULL };