bring in keccak symbols
[mobile-com.git] / DH-Keccak / assets / KremKeccak / displayIntermediateValues.h
CommitLineData
c64e115f 1/*
2The Keccak sponge function, designed by Guido Bertoni, Joan Daemen,
3Michaƫl Peeters and Gilles Van Assche. For more information, feedback or
4questions, please refer to our website: http://keccak.noekeon.org/
5
6Implementation by the designers,
7hereby denoted as "the implementer".
8
9To the extent possible under law, the implementer has waived all copyright
10and related or neighboring rights to the source code in this file.
11http://creativecommons.org/publicdomain/zero/1.0/
12*/
13
14#ifndef _displayIntermediateValues_h_
15#define _displayIntermediateValues_h_
16
17#include <stdio.h>
18
19void displaySetIntermediateValueFile(FILE *f);
20void displaySetLevel(int level);
21void displayBytes(int level, const char *text, const unsigned char *bytes, unsigned int size);
22void displayBits(int level, const char *text, const unsigned char *data, unsigned int size, int MSBfirst);
23void displayStateAsBytes(int level, const char *text, const unsigned char *state);
24void displayStateAs32bitWords(int level, const char *text, const unsigned int *state);
25void displayStateAs64bitWords(int level, const char *text, const unsigned long long int *state);
26void displayRoundNumber(int level, unsigned int i);
27void displayText(int level, const char *text);
28
29#endif