[bitbake-devel][PATCH] fetch: Upgrade shown checksum to SHA-512
Joshua Watt <[email protected]>
| Newsgroups | org.openembedded.lists.bitbake-devel |
|---|---|
| Message-ID | <[email protected]> |
Regulatory standards for Software Bill of Materials like BSI TR-03183 [1] are requiring SHA 512 as the minimum checksum for validation. Upgrade the checksum suggested by the bitbake fetcher to align with this requirement. Note that the checker has allowed SHA 512 as the checksum for some time now, this only changes the checksum that is suggested by tooling. [1]: https://www.bsi.bund.de/EN/Themen/Unternehmen-und-Organisationen/Standards-und-Zertifizierung/Technische-Richtlinien/TR-nach-Thema-sortiert/tr03183/TR-03183_node.html Signed-off-by: Joshua Watt <[email protected]> --- lib/bb/fetch2/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/fetch2/__init__.py b/lib/bb/fetch2/__init__.py index f7d5dfe9a..1e78c4fda 100644 --- a/lib/bb/fetch2/__init__.py +++ b/lib/bb/fetch2/__init__.py @@ -35,7 +35,7 @@ _revisions_cache = bb.checksum.RevisionsCache() logger = logging.getLogger("BitBake.Fetcher") CHECKSUM_LIST = [ "goh1", "md5", "sha256", "sha1", "sha384", "sha512" ] -SHOWN_CHECKSUM_LIST = ["sha256"] +SHOWN_CHECKSUM_LIST = ["sha256", "sha512"] class BBFetchException(Exception): """Class all fetch exceptions inherit from""" -- 2.54.0