diff options
author | Mattias Andrée <maandree@kth.se> | 2024-09-01 09:56:49 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-09-01 09:56:49 +0200 |
commit | 5caa621d9e0c3fc3893b0b94efe1503fcd6a5c88 (patch) | |
tree | 8494e1940f082441a06ad35e55d6e874d9855001 /common.h | |
parent | More testing (diff) | |
download | libhashsum-5caa621d9e0c3fc3893b0b94efe1503fcd6a5c88.tar.gz libhashsum-5caa621d9e0c3fc3893b0b94efe1503fcd6a5c88.tar.bz2 libhashsum-5caa621d9e0c3fc3893b0b94efe1503fcd6a5c88.tar.xz |
Add tests for SHAKE and RawSHAKE
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | common.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -63,7 +63,7 @@ struct testcase { }; static void -hex(char *out, const unsigned char *in, size_t n) +hex(char *restrict out, const unsigned char *restrict in, size_t n) { for (; n--; in++) { *out++ = "0123456789abcdef"[(*in >> 4) & 15]; |