File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -325,6 +325,8 @@ enum HashAlg {
325
325
HASH_ALG_BLAKE_2_B_384 = 10 ;
326
326
HASH_ALG_BLAKE_2_B_512 = 11 ;
327
327
HASH_ALG_BLAKE_3 = 12 ;
328
+ HASH_ALG_STREEBOG_256 = 13 ;
329
+ HASH_ALG_STREEBOG_512 = 14 ;
328
330
}
329
331
330
332
// Specifies the file hash of the component
Original file line number Diff line number Diff line change 1220
1220
" BLAKE2b-256" ,
1221
1221
" BLAKE2b-384" ,
1222
1222
" BLAKE2b-512" ,
1223
- " BLAKE3"
1223
+ " BLAKE3" ,
1224
+ " Streebog-256" ,
1225
+ " Streebog-512"
1224
1226
]
1225
1227
},
1226
1228
"hash-content" : {
Original file line number Diff line number Diff line change @@ -1134,6 +1134,8 @@ limitations under the License.
1134
1134
<xs : enumeration value =" BLAKE2b-384" />
1135
1135
<xs : enumeration value =" BLAKE2b-512" />
1136
1136
<xs : enumeration value =" BLAKE3" />
1137
+ <xs : enumeration value =" Streebog-256" />
1138
+ <xs : enumeration value =" Streebog-512" />
1137
1139
</xs : restriction >
1138
1140
</xs : simpleType >
1139
1141
You can’t perform that action at this time.
0 commit comments