From fe2b4e38101ada418463f7bb519e210c047a5ed1 Mon Sep 17 00:00:00 2001 From: Tyler Williams Date: Wed, 15 Mar 2023 09:49:42 -0700 Subject: [PATCH] Add value for BLAKE3 hash function: --- build/bazel/remote/execution/v2/remote_execution.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build/bazel/remote/execution/v2/remote_execution.proto b/build/bazel/remote/execution/v2/remote_execution.proto index 8e5fb4b8..71affb0c 100644 --- a/build/bazel/remote/execution/v2/remote_execution.proto +++ b/build/bazel/remote/execution/v2/remote_execution.proto @@ -1885,6 +1885,10 @@ message DigestFunction { // Test vectors of this digest function can be found in the // accompanying sha256tree_test_vectors.txt file. SHA256TREE = 8; + + // The BLAKE3 hash function. + // See https://github.com/BLAKE3-team/BLAKE3. + BLAKE3 = 9; } }