From 6b6c8464f9afa1913fc25a79ce78ac9a712f3723 Mon Sep 17 00:00:00 2001 From: JinWang An Date: Tue, 3 Aug 2021 16:30:32 +0900 Subject: Imported Upstream version 4.2 --- src/third_party/blake3/blake3.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/third_party/blake3/blake3.h') diff --git a/src/third_party/blake3/blake3.h b/src/third_party/blake3/blake3.h index 51f1d2a..57ebd5a 100644 --- a/src/third_party/blake3/blake3.h +++ b/src/third_party/blake3/blake3.h @@ -8,6 +8,7 @@ extern "C" { #endif +#define BLAKE3_VERSION_STRING "0.3.7" #define BLAKE3_KEY_LEN 32 #define BLAKE3_OUT_LEN 32 #define BLAKE3_BLOCK_LEN 64 @@ -38,6 +39,7 @@ typedef struct { uint8_t cv_stack[(BLAKE3_MAX_DEPTH + 1) * BLAKE3_OUT_LEN]; } blake3_hasher; +const char * blake3_version(void); void blake3_hasher_init(blake3_hasher *self); void blake3_hasher_init_keyed(blake3_hasher *self, const uint8_t key[BLAKE3_KEY_LEN]); -- cgit v1.2.3