From 36ed678790b0eb9d39848bf6b384733e57a37b6d Mon Sep 17 00:00:00 2001 From: Herohtar Date: Tue, 23 Jul 2019 23:10:43 -0500 Subject: Use SHA1 instead of MD5 --- src/WixToolset.BuildTasks/GenerateCompileWithObjectPath.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/WixToolset.BuildTasks/GenerateCompileWithObjectPath.cs b/src/WixToolset.BuildTasks/GenerateCompileWithObjectPath.cs index 06c8b98a..c4a5cefe 100644 --- a/src/WixToolset.BuildTasks/GenerateCompileWithObjectPath.cs +++ b/src/WixToolset.BuildTasks/GenerateCompileWithObjectPath.cs @@ -62,9 +62,9 @@ namespace WixToolset.BuildTasks // hash the data byte[] hash; - using (MD5 md5 = new MD5CryptoServiceProvider()) + using (SHA1 sha1 = new SHA1CryptoServiceProvider()) { - hash = md5.ComputeHash(data); + hash = sha1.ComputeHash(data); } // build up the identifier -- cgit v1.2.3-55-g6feb