From bd8906f46b36bd479e1222984c37a534324b2d9d Mon Sep 17 00:00:00 2001 From: Jeremy Giudicelli Date: Thu, 17 Apr 2025 13:40:01 +0200 Subject: [PATCH] fix : add Categories and index --- src/core/config/Categories.json | 1 + tests/operations/index.mjs | 1 + 2 files changed, 2 insertions(+) diff --git a/src/core/config/Categories.json b/src/core/config/Categories.json index 71b311e6..19e84f76 100644 --- a/src/core/config/Categories.json +++ b/src/core/config/Categories.json @@ -422,6 +422,7 @@ "Snefru", "BLAKE2b", "BLAKE2s", + "BLAKE3", "GOST Hash", "Streebog", "SSDEEP", diff --git a/tests/operations/index.mjs b/tests/operations/index.mjs index bb7016bb..a4a27727 100644 --- a/tests/operations/index.mjs +++ b/tests/operations/index.mjs @@ -31,6 +31,7 @@ import "./tests/BCD.mjs"; import "./tests/BitwiseOp.mjs"; import "./tests/BLAKE2b.mjs"; import "./tests/BLAKE2s.mjs"; +import "./tests/BLAKE3.mjs"; import "./tests/Bombe.mjs"; import "./tests/BSON.mjs"; import "./tests/ByteRepr.mjs";