X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=hfal_shabal.c;fp=hfal_shabal.c;h=0000000000000000000000000000000000000000;hb=d70d1d77bab1a5f5278227d674bc59da0378fe15;hp=ec0c7b6f43fe4a20e0f215aa26243f1a55343bbb;hpb=d00ed9a275c69fa3512007452e479abd98dbe745;p=arm-crypto-lib.git diff --git a/hfal_shabal.c b/hfal_shabal.c deleted file mode 100644 index ec0c7b6..0000000 --- a/hfal_shabal.c +++ /dev/null @@ -1,113 +0,0 @@ -/* hfal_shabal.c */ -/* - This file is part of the AVR-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_shabal.c - * \email daniel.otte@rub.de - * \author Daniel Otte - * \date 2009-04-20 - * \license GPLv3 or later - * - */ - - -#include -#include "hashfunction_descriptor.h" -#include "shabal.h" - - -static const char shabal192_str[] = "Shabal-192"; -static const char shabal224_str[] = "Shabal-224"; -static const char shabal256_str[] = "Shabal-256"; -static const char shabal384_str[] = "Shabal-384"; -static const char shabal512_str[] = "Shabal-512"; - -const hfdesc_t shabal192_desc = { - HFDESC_TYPE_HASHFUNCTION, - 0, - shabal192_str, - sizeof(shabal_ctx_t), - SHABAL_BLOCKSIZE, - 192, - (hf_init_fpt)shabal192_init, - (hf_nextBlock_fpt)shabal_nextBlock, - (hf_lastBlock_fpt)shabal_lastBlock, - (hf_ctx2hash_fpt)shabal192_ctx2hash, - (hf_free_fpt)NULL, - (hf_mem_fpt)shabal192 -}; - -const hfdesc_t shabal224_desc = { - HFDESC_TYPE_HASHFUNCTION, - 0, - shabal224_str, - sizeof(shabal_ctx_t), - SHABAL_BLOCKSIZE, - 224, - (hf_init_fpt)shabal224_init, - (hf_nextBlock_fpt)shabal_nextBlock, - (hf_lastBlock_fpt)shabal_lastBlock, - (hf_ctx2hash_fpt)shabal224_ctx2hash, - (hf_free_fpt)NULL, - (hf_mem_fpt)shabal224 -}; - -const hfdesc_t shabal256_desc = { - HFDESC_TYPE_HASHFUNCTION, - 0, - shabal256_str, - sizeof(shabal_ctx_t), - SHABAL_BLOCKSIZE, - 256, - (hf_init_fpt)shabal256_init, - (hf_nextBlock_fpt)shabal_nextBlock, - (hf_lastBlock_fpt)shabal_lastBlock, - (hf_ctx2hash_fpt)shabal256_ctx2hash, - (hf_free_fpt)NULL, - (hf_mem_fpt)shabal256 -}; - -const hfdesc_t shabal384_desc = { - HFDESC_TYPE_HASHFUNCTION, - 0, - shabal384_str, - sizeof(shabal_ctx_t), - SHABAL_BLOCKSIZE, - 384, - (hf_init_fpt)shabal384_init, - (hf_nextBlock_fpt)shabal_nextBlock, - (hf_lastBlock_fpt)shabal_lastBlock, - (hf_ctx2hash_fpt)shabal384_ctx2hash, - (hf_free_fpt)NULL, - (hf_mem_fpt)shabal384 -}; - -const hfdesc_t shabal512_desc = { - HFDESC_TYPE_HASHFUNCTION, - 0, - shabal512_str, - sizeof(shabal_ctx_t), - SHABAL_BLOCKSIZE, - 512, - (hf_init_fpt)shabal512_init, - (hf_nextBlock_fpt)shabal_nextBlock, - (hf_lastBlock_fpt)shabal_lastBlock, - (hf_ctx2hash_fpt)shabal512_ctx2hash, - (hf_free_fpt)NULL, - (hf_mem_fpt)shabal512 -};