aboutsummaryrefslogtreecommitdiffstats
path: root/src/qtmsbuild/qt_globals.targets
diff options
context:
space:
mode:
authorMiguel Costa <miguel.costa@qt.io>2019-01-30 17:58:23 +0100
committerMiguel Costa <miguel.costa@qt.io>2019-01-31 08:01:19 +0000
commit0675fc4d46001fb1c0936bd0354f20c9a3e66063 (patch)
tree48d1e268b77b5a5df99055a9d45d6ea84d7c7d64 /src/qtmsbuild/qt_globals.targets
parent5f6642915d67ed67df8d375e67202e19194513ff (diff)
Use different hash calculation for Qt work items
Will now calculate the hash of Qt work items (i.e. MSBuild items that represent in-build processing with Qt tools moc, rcc, etc.) using a a combination of Deflate and Base64. Previously, the hash relied on the SHA1 implementation in .NET cryptography. The new approach entails a slight (i.e. non-significant) performance degradation, and has some advantages over using SHA1: * Deflate's lossless compression eliminates the (extremely unlikely) possibility of an hash collision. * Avoids any current or future restrictions imposed on the use of cryptographic functions -- as is the case with the enforcement of FIPS compliance (cf. bug report). Task-number: QTVSADDINBUG-618 Change-Id: I70017cacfb093377bed07da207fd2e10ddf5fe2b Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'src/qtmsbuild/qt_globals.targets')
-rw-r--r--src/qtmsbuild/qt_globals.targets2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qtmsbuild/qt_globals.targets b/src/qtmsbuild/qt_globals.targets
index e9eaf5ca..972047a5 100644
--- a/src/qtmsbuild/qt_globals.targets
+++ b/src/qtmsbuild/qt_globals.targets
@@ -118,7 +118,7 @@
<!--
///////////////////////////////////////////////////////////////////////////////////////////////
- // Calculate hash (SHA1) for the requested work item, based on its associated tool and options
+ // Calculate hash for the requested work item, based on its associated tool and options
// -->
<GetItemHash Condition="'@(QtWork)' != ''"
Item="@(QtWork)" Keys="Identity;WorkType;ToolPath;Options">