2013-03-07 14:56:48 +00:00
|
|
|
/*
|
|
|
|
* This file is a part of Pcompress, a chunked parallel multi-
|
|
|
|
* algorithm lossless compression and decompression program.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012-2013 Moinak Ghosh. All rights reserved.
|
|
|
|
* Use is subject to license terms.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this program.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* moinakg@belenix.org, http://moinakg.wordpress.com/
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-12-08 08:49:01 +00:00
|
|
|
/*
|
|
|
|
The Keccak sponge function, designed by Guido Bertoni, Joan Daemen,
|
|
|
|
Michaël Peeters and Gilles Van Assche. For more information, feedback or
|
|
|
|
questions, please refer to our website: http://keccak.noekeon.org/
|
|
|
|
|
|
|
|
Implementation by the designers,
|
|
|
|
hereby denoted as "the implementer".
|
|
|
|
|
|
|
|
To the extent possible under law, the implementer has waived all copyright
|
|
|
|
and related or neighboring rights to the source code in this file.
|
|
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _KeccakPermutationInterface_h_
|
|
|
|
#define _KeccakPermutationInterface_h_
|
|
|
|
|
|
|
|
#include "KeccakF-1600-int-set.h"
|
|
|
|
|
|
|
|
void KeccakInitialize( void );
|
|
|
|
void KeccakInitializeState(unsigned char *state);
|
|
|
|
void KeccakPermutation(unsigned char *state);
|
|
|
|
#ifdef ProvideFast576
|
|
|
|
void KeccakAbsorb576bits(unsigned char *state, const unsigned char *data);
|
|
|
|
#endif
|
|
|
|
#ifdef ProvideFast832
|
|
|
|
void KeccakAbsorb832bits(unsigned char *state, const unsigned char *data);
|
|
|
|
#endif
|
|
|
|
#ifdef ProvideFast1024
|
|
|
|
void KeccakAbsorb1024bits(unsigned char *state, const unsigned char *data);
|
|
|
|
#endif
|
|
|
|
#ifdef ProvideFast1088
|
|
|
|
void KeccakAbsorb1088bits(unsigned char *state, const unsigned char *data);
|
|
|
|
#endif
|
|
|
|
#ifdef ProvideFast1152
|
|
|
|
void KeccakAbsorb1152bits(unsigned char *state, const unsigned char *data);
|
|
|
|
#endif
|
|
|
|
#ifdef ProvideFast1344
|
|
|
|
void KeccakAbsorb1344bits(unsigned char *state, const unsigned char *data);
|
|
|
|
#endif
|
|
|
|
void KeccakAbsorb(unsigned char *state, const unsigned char *data, unsigned int laneCount);
|
|
|
|
#ifdef ProvideFast1024
|
|
|
|
void KeccakExtract1024bits(const unsigned char *state, unsigned char *data);
|
|
|
|
#endif
|
|
|
|
void KeccakExtract(const unsigned char *state, unsigned char *data, unsigned int laneCount);
|
|
|
|
|
|
|
|
#endif
|