Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions schema/bom-1.7.proto
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,8 @@ enum HashAlg {
HASH_ALG_BLAKE_2_B_384 = 10;
HASH_ALG_BLAKE_2_B_512 = 11;
HASH_ALG_BLAKE_3 = 12;
HASH_ALG_STREEBOG_256 = 13;
HASH_ALG_STREEBOG_512 = 14;
}

// Specifies the file hash of the component
Expand Down
4 changes: 3 additions & 1 deletion schema/bom-1.7.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1220,7 +1220,9 @@
"BLAKE2b-256",
"BLAKE2b-384",
"BLAKE2b-512",
"BLAKE3"
"BLAKE3",
"Streebog-256",
"Streebog-512"
]
},
"hash-content": {
Expand Down
2 changes: 2 additions & 0 deletions schema/bom-1.7.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -1134,6 +1134,8 @@ limitations under the License.
<xs:enumeration value="BLAKE2b-384"/>
<xs:enumeration value="BLAKE2b-512"/>
<xs:enumeration value="BLAKE3"/>
<xs:enumeration value="Streebog-256"/>
<xs:enumeration value="Streebog-512"/>
</xs:restriction>
</xs:simpleType>

Expand Down