aboutsummaryrefslogtreecommitdiffstats
path: root/libhashsum.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2024-09-01 09:56:49 +0200
committerMattias Andrée <maandree@kth.se>2024-09-01 09:56:49 +0200
commit5caa621d9e0c3fc3893b0b94efe1503fcd6a5c88 (patch)
tree8494e1940f082441a06ad35e55d6e874d9855001 /libhashsum.h
parentMore testing (diff)
downloadlibhashsum-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 'libhashsum.h')
-rw-r--r--libhashsum.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/libhashsum.h b/libhashsum.h
index 22f7488..780b567 100644
--- a/libhashsum.h
+++ b/libhashsum.h
@@ -178,46 +178,46 @@
#define LIBHASHSUM_SHA3_512_HASH_SIZE 64
/**
- * The value of `struct libhashsum_hasher.hash_size` for `LIBHASHSUM_SHAKE_128`
+ * The value of `struct libhashsum_hasher.hash_size` for `LIBHASHSUM_SHAKE128`
*
* @since 1.0
*/
-#define LIBHASHSUM_SHAKE_128_HASH_SIZE 16
+#define LIBHASHSUM_SHAKE128_HASH_SIZE 16
/**
- * The value of `struct libhashsum_hasher.hash_size` for `LIBHASHSUM_SHAKE_256`
+ * The value of `struct libhashsum_hasher.hash_size` for `LIBHASHSUM_SHAKE256`
*
* @since 1.0
*/
-#define LIBHASHSUM_SHAKE_256_HASH_SIZE 32
+#define LIBHASHSUM_SHAKE256_HASH_SIZE 32
/**
- * The value of `struct libhashsum_hasher.hash_size` for `LIBHASHSUM_SHAKE_512`
+ * The value of `struct libhashsum_hasher.hash_size` for `LIBHASHSUM_SHAKE512`
*
* @since 1.0
*/
-#define LIBHASHSUM_SHAKE_512_HASH_SIZE 64
+#define LIBHASHSUM_SHAKE512_HASH_SIZE 64
/**
- * The value of `struct libhashsum_hasher.hash_size` for `LIBHASHSUM_RAWSHAKE_128`
+ * The value of `struct libhashsum_hasher.hash_size` for `LIBHASHSUM_RAWSHAKE128`
*
* @since 1.0
*/
-#define LIBHASHSUM_RAWSHAKE_128_HASH_SIZE 16
+#define LIBHASHSUM_RAWSHAKE128_HASH_SIZE 16
/**
- * The value of `struct libhashsum_hasher.hash_size` for `LIBHASHSUM_RAWSHAKE_256`
+ * The value of `struct libhashsum_hasher.hash_size` for `LIBHASHSUM_RAWSHAKE256`
*
* @since 1.0
*/
-#define LIBHASHSUM_RAWSHAKE_256_HASH_SIZE 32
+#define LIBHASHSUM_RAWSHAKE256_HASH_SIZE 32
/**
- * The value of `struct libhashsum_hasher.hash_size` for `LIBHASHSUM_RAWSHAKE_512`
+ * The value of `struct libhashsum_hasher.hash_size` for `LIBHASHSUM_RAWSHAKE512`
*
* @since 1.0
*/
-#define LIBHASHSUM_RAWSHAKE_512_HASH_SIZE 64
+#define LIBHASHSUM_RAWSHAKE512_HASH_SIZE 64
/**
* The value of `struct libhashsum_hasher.hash_size` for `LIBHASHSUM_BLAKE224`