-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a SBOM template in CycloneDX format (#585)
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 <richard@hughsie.com>
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" | ||
} | ||
} | ||
] | ||
} |