From b6d585645ca7d469fd9fe453ff37ca6bdb914d98 Mon Sep 17 00:00:00 2001 From: Matt Benjamin Date: Tue, 25 Jun 2024 11:45:35 -0400 Subject: [PATCH] common/rgw: add BLAKE3 submodule Fast, cryptographic hash functions suitable for block checksums. BLAKE3 is the faster, more portable successor to Blake2(b,s), now with 4x throughput. Signed-off-by: Matt Benjamin --- .gitmodules | 7 +++++++ src/BLAKE3 | 1 + 2 files changed, 8 insertions(+) create mode 160000 src/BLAKE3 diff --git a/.gitmodules b/.gitmodules index 7aa350efe2864..bf38e45915baa 100644 --- a/.gitmodules +++ b/.gitmodules @@ -75,3 +75,10 @@ [submodule "src/qatzip"] path = src/qatzip url = https://github.com/intel/qatzip.git +[submodule "src/boost_redis"] + path = src/boost_redis + url = https://github.com/boostorg/redis.git +[submodule "src/BLAKE3"] + path = src/BLAKE3 + url = https://github.com/BLAKE3-team/BLAKE3.git + diff --git a/src/BLAKE3 b/src/BLAKE3 new file mode 160000 index 0000000000000..92e4cd71be48f --- /dev/null +++ b/src/BLAKE3 @@ -0,0 +1 @@ +Subproject commit 92e4cd71be48fdf9a79e88ef37b8f415ec5ac210 -- 2.39.5