From 2750cfcc73faea5a2ae776507d70e9e6302cc3b9 Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Mon, 9 Dec 2024 10:53:02 +0000 Subject: [PATCH] Add a SBOM template 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 --- sbom.cdx.json | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 sbom.cdx.json diff --git a/sbom.cdx.json b/sbom.cdx.json new file mode 100644 index 00000000..50b18dfd --- /dev/null +++ b/sbom.cdx.json @@ -0,0 +1,45 @@ +{ + "bomFormat": "CycloneDX", + "specVersion": "1.6", + "version": 1, + "metadata": { + "authors": [ + { + "name": "@VCS_SBOM_AUTHORS@" + } + ] + }, + "components": [ + { + "type": "library", + "bom-ref": "pkg:github/open-quantum-safe/oqs-provider@@VCS_TAG@", + "name": "oqsprovider", + "version": "@VCS_VERSION@", + "description": "Research and prototyping OSSL provider for post quantum cryptographic algorithms (NOT RECOMMENDED FOR PRODUCTION USE)", + "authors": [ + { + "name": "@VCS_AUTHORS@" + } + ], + "supplier": { + "name": "The OQS core team" + }, + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/open-quantum-safe/oqs-provider" + } + ], + "pedigree": { + "notes": "DO NOT TRUST" + } + } + ] +}