diff options
author | Mattias Andrée <maandree@kth.se> | 2024-08-24 21:01:08 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-08-24 21:01:08 +0200 |
commit | f9b4d7bee1e486723aa3d406ba885fb23634ae8e (patch) | |
tree | e69ad9680ad0a882e2f4419e66b228603f4bdcc5 | |
parent | Add support for salt for BLAKE (diff) | |
download | libhashsum-f9b4d7bee1e486723aa3d406ba885fb23634ae8e.tar.gz libhashsum-f9b4d7bee1e486723aa3d406ba885fb23634ae8e.tar.bz2 libhashsum-f9b4d7bee1e486723aa3d406ba885fb23634ae8e.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | libhashsum.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libhashsum.h b/libhashsum.h index 00fbb17..7f828c0 100644 --- a/libhashsum.h +++ b/libhashsum.h @@ -67,10 +67,10 @@ enum libhashsum_algorithm { LIBHASHSUM_RAWSHAKE128, /**< RawSHAKE128 */ LIBHASHSUM_RAWSHAKE256, /**< RawSHAKE256 */ LIBHASHSUM_RAWSHAKE512, /**< RawSHAKE512 */ - LIBHASHSUM_BLAKE224, /**< BLAKE224 */ - LIBHASHSUM_BLAKE256, /**< BLAKE256 */ - LIBHASHSUM_BLAKE384, /**< BLAKE384 */ - LIBHASHSUM_BLAKE512 /**< BLAKE512 */ + LIBHASHSUM_BLAKE224, /**< BLAKE224 (BLAKE, BLAKEs) */ + LIBHASHSUM_BLAKE256, /**< BLAKE256 (BLAKE, BLAKEs) */ + LIBHASHSUM_BLAKE384, /**< BLAKE384 (BLAKE, BLAKEb) */ + LIBHASHSUM_BLAKE512 /**< BLAKE512 (BLAKE, BLAKEb) */ }; |