aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md1
-rw-r--r--sha3.c1
-rw-r--r--sha3.h1
3 files changed, 3 insertions, 0 deletions
diff --git a/README.md b/README.md
index dec112e..a35cd04 100644
--- a/README.md
+++ b/README.md
@@ -22,6 +22,7 @@
* ParallelHash128 and ParallelHash128-XOF
* ParallelHash256 and ParallelHash256-XOF
* TurboSHAKE128 and TurboSHAKE256
+* KangarooTwelve
Use `make` to build a minimal test application, and `make test` to run
the test suite.
diff --git a/sha3.c b/sha3.c
index b0ab709..e3ec77e 100644
--- a/sha3.c
+++ b/sha3.c
@@ -26,6 +26,7 @@
* - ParallelHash128 and ParallelHash128-XOF
* - ParallelHash256 and ParallelHash256-XOF
* - TurboSHAKE128 and TurboSHAKE256
+ * - KangarooTwelve
*/
#include <stdbool.h> // true, false
diff --git a/sha3.h b/sha3.h
index 73fb7e2..0f7db1e 100644
--- a/sha3.h
+++ b/sha3.h
@@ -26,6 +26,7 @@
* - ParallelHash128 and ParallelHash128-XOF
* - ParallelHash256 and ParallelHash256-XOF
* - TurboSHAKE128 and TurboSHAKE256
+ * - KangarooTwelve
*/
#ifndef SHA3_H