Author: mseidel
Date: Fri Nov 2 00:17:41 2018
New Revision: 1845526
URL: http://svn.apache.org/viewvc?rev=1845526&view=rev
Log:
Correction for SHA512 hash created by OpenSSL
Modified:
openoffice/devtools/release-scripts/hash-sign.sh
Modified: openoffice/devtools/release-scripts/hash-sign.sh
URL:
http://svn.apache.org/viewvc/openoffice/devtools/release-scripts/hash-sign.sh?rev=1845526&r1=1845525&r2=1845526&view=diff
==============================================================================
--- openoffice/devtools/release-scripts/hash-sign.sh (original)
+++ openoffice/devtools/release-scripts/hash-sign.sh Fri Nov 2 00:17:41 2018
@@ -44,7 +44,7 @@ if test -x "${openssl}"; then
if test -f "${file}"; then
echo "openssl: creating sha512 checksum file for ${file} ..."
${openssl} sha512 ${file} |\
- ${sed} -e 's#^sha512(\(.*/\)*\(.*\))= \([0-9a-f]*\)$#\3 *\2#' >
${file}.sha512
+ ${sed} -e 's#^SHA512(\(.*/\)*\(.*\))= \([0-9a-f]*\)$#\3 *\2#' >
${file}.sha512
echo "openssl: creating sha256 checksum file for ${file} ..."
${openssl} sha256 ${file} |\
${sed} -e 's#^SHA256(\(.*/\)*\(.*\))= \([0-9a-f]*\)$#\3 *\2#' >
${file}.sha256