diff options
| author | Paul Duncan <pabs@pablotron.org> | 2023-09-06 01:57:24 -0400 |
|---|---|---|
| committer | Paul Duncan <pabs@pablotron.org> | 2023-09-06 01:57:24 -0400 |
| commit | f5b1fb3e65a27626964b55f74f2a629fe8139b0d (patch) | |
| tree | 20c0a9d2acd7f099a5b008ea40d9a9356a79c5c2 | |
| parent | 1f51b90f75b5898ff4a58f15e0f59c71e185b490 (diff) | |
| download | sha3-f5b1fb3e65a27626964b55f74f2a629fe8139b0d.tar.xz sha3-f5b1fb3e65a27626964b55f74f2a629fe8139b0d.zip | |
README.md, sha3.[hc]: add KangarooTwelve to algorithm list
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | sha3.c | 1 | ||||
| -rw-r--r-- | sha3.h | 1 |
3 files changed, 3 insertions, 0 deletions
@@ -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. @@ -26,6 +26,7 @@ * - ParallelHash128 and ParallelHash128-XOF * - ParallelHash256 and ParallelHash256-XOF * - TurboSHAKE128 and TurboSHAKE256 + * - KangarooTwelve */ #include <stdbool.h> // true, false @@ -26,6 +26,7 @@ * - ParallelHash128 and ParallelHash128-XOF * - ParallelHash256 and ParallelHash256-XOF * - TurboSHAKE128 and TurboSHAKE256 + * - KangarooTwelve */ #ifndef SHA3_H |
