From e382abf33f1aedc18f19e9bf2bb2e407035f2c92 Mon Sep 17 00:00:00 2001 From: Tyler Williams Date: Wed, 14 Jun 2023 11:57:26 -0700 Subject: [PATCH] Add BLAKE3 digest function to remote_execution.proto Partial commit for third_party/*, see #18681. Signed-off-by: Pavan Singh --- .../build/bazel/remote/execution/v2/remote_execution.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/third_party/remoteapis/build/bazel/remote/execution/v2/remote_execution.proto b/third_party/remoteapis/build/bazel/remote/execution/v2/remote_execution.proto index 8e5fb4b81cc163..71affb0ca788ce 100644 --- a/third_party/remoteapis/build/bazel/remote/execution/v2/remote_execution.proto +++ b/third_party/remoteapis/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; } }