Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2014-05-19 23:43:38 +0000
committerDavid Williams2014-05-19 23:43:38 +0000
commit48311f374e79b95d8e05ebf3f9fd6d017e1fada6 (patch)
treea5fef6d64192ec838b5a44598eab8e50e998e7ec /eclipse.platform.releng.tychoeclipsebuilder/equinox
parent54b7c972d8a7231972f56f96a9f66094f4d7a524 (diff)
downloadeclipse.platform.releng.aggregator-48311f374e79b95d8e05ebf3f9fd6d017e1fada6.tar.gz
eclipse.platform.releng.aggregator-48311f374e79b95d8e05ebf3f9fd6d017e1fada6.tar.xz
eclipse.platform.releng.aggregator-48311f374e79b95d8e05ebf3f9fd6d017e1fada6.zip
Bug 423714 - Use SHA-2 512 checksums (instead of md5 and SHA1)
Diffstat (limited to 'eclipse.platform.releng.tychoeclipsebuilder/equinox')
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/staticDropFiles/build.php3
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/templateFiles/index.php.template6
2 files changed, 6 insertions, 3 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/staticDropFiles/build.php b/eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/staticDropFiles/build.php
index 208cd0b58..c1cc8c678 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/staticDropFiles/build.php
+++ b/eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/staticDropFiles/build.php
@@ -20,6 +20,7 @@ function getDropSize($zipfile) {
}
function generateChecksumLinks($zipfile, $buildlabel) {
- return "<td><a href=\"http://download.eclipse.org/equinox/drops/$buildlabel/checksum/$zipfile.md5\"><img src=\"/equinox/images/md5.png\" alt=\"md5\"/></a><a href=\"http://download.eclipse.org/equinox/drops/$buildlabel/checksum/$zipfile.sha1\"><img src=\"/equinox/images/sha1.png\" alt=\"sha1\"/></a></td>";
+ //return "<td><a href=\"http://download.eclipse.org/equinox/drops/$buildlabel/checksum/$zipfile.md5\"><img src=\"/equinox/images/md5.png\" alt=\"md5\"/></a><a href=\"http://download.eclipse.org/equinox/drops/$buildlabel/checksum/$zipfile.sha1\"><img src=\"/equinox/images/sha1.png\" alt=\"sha1\"/></a></td>";
+ return "<td><a href=\"http://download.eclipse.org/equinox/drops/$buildlabel/checksum/$zipfile.sha512\"><img src=\"/equinox/images/sha1.png\" alt=\"sha512\"/></a></td>";
}
?>
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/templateFiles/index.php.template b/eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/templateFiles/index.php.template
index a89da22ae..1dd3edce2 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/templateFiles/index.php.template
+++ b/eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/templateFiles/index.php.template
@@ -32,7 +32,7 @@
<h3>Equinox $BUILD_TYPE_NAME Build: $BUILD_ID</h3>
<p><b>$BUILD_PRETTY_DATE</b></p>
<p>These downloads are provided under the <a href="http://www.eclipse.org/legal/epl/notice.html">
- Eclipse Foundation Software User Agreement</a>. Click <a href="verifyMD5.html">here</a> for instructions
+ Eclipse Foundation Software User Agreement</a>. Click <a href="https://wiki.eclipse.org/Platform-releng/How_to_check_integrity_of_downloadsml">here</a> for instructions
on verifying download integrity.</p>
@@ -135,13 +135,15 @@
<td align="center"><img src="/equinox/images/repo.gif"/></td>
<td>Build artifact is also a p2 repository</td>
</tr>
+ <!--
<tr>
<td align="center"><img src="/equinox/images/md5.png"/></td>
<td>Click to get the MD5 hash for the corresponding build artifact</td>
</tr>
+ -->
<tr>
<td align="center"><img src="/equinox/images/sha1.png"/></td>
- <td>Click to get the SHA1 hash for the corresponding build artifact</td>
+ <td>Click to get the SHA512 hash for the corresponding build artifact</td>
</tr>
<tr>
<td align="center"><img src="http://eclipse.org/equinox/images/arrow.png"/></td>

Back to the top