From 5f26c677e6d9e2eef31e28c8f081a91bb9302d5d Mon Sep 17 00:00:00 2001 From: Tim Johnson Date: Sat, 28 Feb 2026 09:29:29 -0500 Subject: [PATCH] Change Hash field to SHA256 for package integrity Updated the Hash field to specify SHA256 instead of SHA1 for package file integrity verification. --- docs/deployment/packagefiles-element-bootstrapper.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/deployment/packagefiles-element-bootstrapper.md b/docs/deployment/packagefiles-element-bootstrapper.md index 33e54eef2a6..d58b09f7d68 100644 --- a/docs/deployment/packagefiles-element-bootstrapper.md +++ b/docs/deployment/packagefiles-element-bootstrapper.md @@ -53,7 +53,7 @@ The `PackageFiles` element contains `PackageFile` elements, which define the ins | `HomeSite` | Optional. The location of the package on the remote server, if it is not included with the installer. | | `CopyOnBuild` | Optional. Specifies whether the bootstrapper should copy the package file onto the disk at build time. The default is true. | | `PublicKey` | The encrypted public key of the package's certificate signer. Required if `HomeSite` is used; otherwise, optional. | -| `Hash` | Optional. An SHA1 hash of the package file. This is used to verify the integrity of the file at install time. If the identical hash cannot be computed from the package file, the package will not be installed. | +| `Hash` | Optional. An SHA256 hash of the package file. This is used to verify the integrity of the file at install time. If the identical hash cannot be computed from the package file, the package will not be installed. (Note this was a SHA1 Hash for .NET 3.5 and earlier) | ## Example The following code example defines packages for the .NET Framework redistributable package and its dependencies, such as the Windows Installer. @@ -70,4 +70,4 @@ The `PackageFiles` element contains `PackageFile` elements, which define the ins ## See also - [\ element](../deployment/product-element-bootstrapper.md) - [\ element](../deployment/package-element-bootstrapper.md) -- [Product and package schema reference](../deployment/product-and-package-schema-reference.md) \ No newline at end of file +- [Product and package schema reference](../deployment/product-and-package-schema-reference.md)