From 9bc6933c009b8815ecad84496896c4a8b9d583e1 Mon Sep 17 00:00:00 2001 From: Dmitry Volk Date: Thu, 26 Sep 2024 16:40:28 +0300 Subject: [PATCH] Added support for STREEBOG-256 and STREEBOG-512 hashing algorithms (#485) --- schema/bom-1.7.proto | 2 ++ schema/bom-1.7.schema.json | 4 +++- schema/bom-1.7.xsd | 2 ++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/schema/bom-1.7.proto b/schema/bom-1.7.proto index d582e605..142d9507 100644 --- a/schema/bom-1.7.proto +++ b/schema/bom-1.7.proto @@ -314,6 +314,8 @@ enum HashAlg { HASH_ALG_BLAKE_2_B_384 = 10; HASH_ALG_BLAKE_2_B_512 = 11; HASH_ALG_BLAKE_3 = 12; + STREEBOG_256 = 13; + STREEBOG_512 = 14; } // Specifies the file hash of the component diff --git a/schema/bom-1.7.schema.json b/schema/bom-1.7.schema.json index 6adf03a2..12bbde25 100644 --- a/schema/bom-1.7.schema.json +++ b/schema/bom-1.7.schema.json @@ -1220,7 +1220,9 @@ "BLAKE2b-256", "BLAKE2b-384", "BLAKE2b-512", - "BLAKE3" + "BLAKE3", + "STREEBOG-256", + "STREEBOG-512" ] }, "hash-content": { diff --git a/schema/bom-1.7.xsd b/schema/bom-1.7.xsd index 00d98963..761a9fbb 100644 --- a/schema/bom-1.7.xsd +++ b/schema/bom-1.7.xsd @@ -1131,6 +1131,8 @@ limitations under the License. + +