aboutsummaryrefslogtreecommitdiffstats
path: root/src/libkeccak/state.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libkeccak/state.h')
-rw-r--r--src/libkeccak/state.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libkeccak/state.h b/src/libkeccak/state.h
index 9d6be5c..0819b6a 100644
--- a/src/libkeccak/state.h
+++ b/src/libkeccak/state.h
@@ -37,6 +37,11 @@
typedef struct libkeccak_state
{
/**
+ * The lanes (state)
+ */
+ int_fast64_t S[25];
+
+ /**
* The bitrate
*/
long r;
@@ -77,11 +82,6 @@ typedef struct libkeccak_state
long nr;
/**
- * The lanes (state)
- */
- int_fast64_t S[25];
-
- /**
* Pointer for `M`
*/
size_t mptr;