Skip to content

Commit 84c2d69

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 0cc6860 commit 84c2d69

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

scripts/sbom.cdx.json

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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/Mbed-TLS/mbedtls@@VCS_TAG@",
16+
"cpe": "cpe:2.3:a:trustedfirmware:mbed_tls:@VCS_TAG@:*:*:*:*:*:*:*",
17+
"name": "mbedtls",
18+
"version": "@VCS_VERSION@",
19+
"description": "Implements cryptographic primitives, X.509 certificate manipulation and SSL/TLS and DTLS protocols",
20+
"authors": [
21+
{
22+
"name": "@VCS_AUTHORS@"
23+
}
24+
],
25+
"supplier": {
26+
"name": "Trusted Firmware"
27+
},
28+
"licenses": [
29+
{
30+
"license": {
31+
"id": "Apache-2.0"
32+
}
33+
},
34+
{
35+
"license": {
36+
"id": "GPL-2.0-or-later"
37+
}
38+
}
39+
],
40+
"externalReferences": [
41+
{
42+
"type": "vcs",
43+
"url": "https://github.com/Mbed-TLS/mbedtls"
44+
}
45+
]
46+
}
47+
]
48+
}

0 commit comments

Comments
 (0)