diff options
-rw-r--r-- | sha3.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,13 +18,13 @@ * - TurboSHAKE128 and TurboSHAKE256 * - KangarooTwelve */ + +/** @cond INTERNAL */ #include <stdbool.h> // true, false #include <stdint.h> // uint64_t #include <string.h> // memcpy() #include "sha3.h" -/** @cond INTERNAL */ - // available backends #define BACKEND_AUTO 0 // auto-detect (default) #define BACKEND_SCALAR 1 // scalar backend |