Skip to content
Snippets Groups Projects
Commit 91a473a8 authored by Mathias Tausig's avatar Mathias Tausig
Browse files

hashes:sha3: Alterations to Keccak code

Changed integer typedefs to portable stdint types
Added Endianness define
parent 792137f8
No related branches found
No related tags found
No related merge requests found
......@@ -57,6 +57,7 @@
*/
#include <hashes/sha3.h>
#include <stdint.h>
/**
* Function to compute the Keccak[r, c] sponge function over a given input.
......@@ -193,10 +194,14 @@ void sha3_512_final(keccak_state_t *ctx, void *digest)
================================================================
*/
typedef unsigned char UINT8;
typedef unsigned long long int UINT64;
typedef uint8_t UINT8;
typedef uint64_t UINT64;
typedef UINT64 tKeccakLane;
#if __BYTE_ORDER__ == __ORDER__LITTLE_ENDIAN__
#define LITTLE_ENDIAN
#endif
#ifndef LITTLE_ENDIAN
/** Function to load a 64-bit value using the little-endian (LE) convention.
* On a LE platform, this could be greatly simplified using a cast.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment