Skip to content

Commit 16c005a

Browse files
committed
Add a SBOM file in CycloneDX format
Improve supply chain security by including a SBOM file with substituted values. This will be used to construct a composite platform SBOM. Signed-off-by: Richard Hughes <[email protected]>
1 parent c5531f3 commit 16c005a

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

sbom.cdx.json

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"bomFormat": "CycloneDX",
3+
"specVersion": "1.6",
4+
"version": 1,
5+
"metadata": {
6+
"authors": [
7+
{
8+
"name": "@VCS_SBOM_AUTHORS@"
9+
}
10+
]
11+
},
12+
"components": [
13+
{
14+
"type": "library",
15+
"bom-ref": "pkg:github/DMTF/libspdm@@VCS_TAG@",
16+
"cpe": "cpe:2.3:a:dmtf:libspdm:@VCS_TAG@:*:*:*:*:*:*:*",
17+
"name": "libspdm",
18+
"version": "@VCS_VERSION@",
19+
"description": "Reference implementation of SPDM",
20+
"supplier": {
21+
"name": "DMTF"
22+
},
23+
"licenses": [
24+
{
25+
"license": {
26+
"id": "BSD-3-Clause"
27+
}
28+
}
29+
],
30+
"externalReferences": [
31+
{
32+
"type": "vcs",
33+
"url": "https://github.com/DMTF/libspdm"
34+
}
35+
]
36+
}
37+
]
38+
}

0 commit comments

Comments
 (0)