commit 53b5d844f4e4d328cc3e6993e25b436ccc95201e
parent e4455b61ef36d41adc6b6c4a1edd5bc6e499b137
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date: Fri, 27 May 2022 12:34:26 +0200
doc.
Diffstat:
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/include/clap/hash.h b/include/clap/hash.h
@@ -10,7 +10,10 @@ extern "C" {
enum {
CLAP_HASH_CRC32 = 0,
CLAP_HASH_CRC64 = 1,
+
CLAP_HASH_MD5 = 1000,
+
+ // SHA family
CLAP_HASH_SHA1 = 2000,
CLAP_HASH_SHA2_224 = 3000,
@@ -25,8 +28,9 @@ enum {
CLAP_HASH_SHA3_384,
CLAP_HASH_SHA3_512,
- CLAP_BLAKE2 = 5000,
- CLAP_BLAKE3 = 6000,
+ // BLAKE family
+ CLAP_BLAKE2 = 20000,
+ CLAP_BLAKE3 = 21000,
};
typedef uint32_t clap_hash;