Author: markt Date: Tue Nov 14 13:30:04 2017 New Revision: 1815215 URL: http://svn.apache.org/viewvc?rev=1815215&view=rev Log: Switch the new SHA-256 hash to SHA-512 Fix typos in the change log
Modified: tomcat/trunk/build.xml tomcat/trunk/webapps/docs/changelog.xml Modified: tomcat/trunk/build.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/build.xml?rev=1815215&r1=1815214&r2=1815215&view=diff ============================================================================== --- tomcat/trunk/build.xml (original) +++ tomcat/trunk/build.xml Tue Nov 14 13:30:04 2017 @@ -2946,16 +2946,16 @@ Read the Building page on the Apache Tom <local name="filename" /> <local name="md5value" /> <local name="sha1value" /> - <local name="sha256value" /> + <local name="sha512value" /> <basename file="@{file}" property="filename" /> <checksum algorithm="MD5" file="@{file}" property="md5value" /> <checksum algorithm="SHA-1" file="@{file}" property="sha1value" /> - <checksum algorithm="SHA-256" file="@{file}" property="sha256value" /> + <checksum algorithm="SHA-512" file="@{file}" property="sha512value" /> <echo file="@{file}.md5" message="${md5value}${md5sum.binary-prefix}${filename}" /> <echo file="@{file}.sha1" message="${sha1value}${md5sum.binary-prefix}${filename}" /> - <echo file="@{file}.sha256" message="${sha256value}${md5sum.binary-prefix}${filename}" /> + <echo file="@{file}.sha512" message="${sha512value}${md5sum.binary-prefix}${filename}" /> <antcall target="sign" > <param name="file" value="@{file}" /> Modified: tomcat/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1815215&r1=1815214&r2=1815215&view=diff ============================================================================== --- tomcat/trunk/webapps/docs/changelog.xml (original) +++ tomcat/trunk/webapps/docs/changelog.xml Tue Nov 14 13:30:04 2017 @@ -178,7 +178,7 @@ Java 9) registry locations when looking for a JRE. (markt) </fix> <add> - Add generatation of a SHA-256 hash for release artefacts to the build + Add generation of a SHA-512 hash for release artifacts to the build script. (markt) </add> </changelog> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org