From commits-return-11919-archive-asf-public=cust-asf.ponee.io@syncope.apache.org Fri Aug 17 16:31:12 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 685F7180627 for ; Fri, 17 Aug 2018 16:31:11 +0200 (CEST) Received: (qmail 79041 invoked by uid 500); 17 Aug 2018 14:31:10 -0000 Mailing-List: contact commits-help@syncope.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@syncope.apache.org Delivered-To: mailing list commits@syncope.apache.org Received: (qmail 79032 invoked by uid 99); 17 Aug 2018 14:31:10 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Aug 2018 14:31:10 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6FA27E0102; Fri, 17 Aug 2018 14:31:10 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: ilgrosso@apache.org To: commits@syncope.apache.org Message-Id: <5446c9e59e6f4a3da0d0bd99b5c9d2b1@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: syncope git commit: Remove SHA1, use SHA512 Date: Fri, 17 Aug 2018 14:31:10 +0000 (UTC) Repository: syncope Updated Branches: refs/heads/2_1_X 313070bc4 -> a3d0f09c5 Remove SHA1, use SHA512 Project: http://git-wip-us.apache.org/repos/asf/syncope/repo Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/a3d0f09c Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/a3d0f09c Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/a3d0f09c Branch: refs/heads/2_1_X Commit: a3d0f09c5b0111842d605ccb07e0b6c1532d0cc9 Parents: 313070b Author: Francesco Chicchiriccò Authored: Fri Aug 17 16:25:35 2018 +0200 Committer: Francesco Chicchiriccò Committed: Fri Aug 17 16:25:35 2018 +0200 ---------------------------------------------------------------------- src/site/xdoc/downloads.xml | 44 +++++++++++++++++----------------- src/site/xdoc/release-process.xml | 2 +- 2 files changed, 23 insertions(+), 23 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/syncope/blob/a3d0f09c/src/site/xdoc/downloads.xml ---------------------------------------------------------------------- diff --git a/src/site/xdoc/downloads.xml b/src/site/xdoc/downloads.xml index a9e27b6..6603c17 100644 --- a/src/site/xdoc/downloads.xml +++ b/src/site/xdoc/downloads.xml @@ -69,7 +69,7 @@ under the License. asc - sha1 + sha512 @@ -78,7 +78,7 @@ under the License. asc - sha1 + sha512 @@ -87,7 +87,7 @@ under the License. asc - sha1 + sha512 @@ -96,7 +96,7 @@ under the License. asc - sha1 + sha512 @@ -105,7 +105,7 @@ under the License. asc - sha1 + sha512 @@ -114,7 +114,7 @@ under the License. asc - sha1 + sha512 @@ -123,7 +123,7 @@ under the License. asc - sha1 + sha512 @@ -132,7 +132,7 @@ under the License. asc - sha1 + sha512 @@ -141,7 +141,7 @@ under the License. asc - sha1 + sha512 @@ -150,7 +150,7 @@ under the License. asc - sha1 + sha512 @@ -190,7 +190,7 @@ under the License. asc - sha1 + sha512 @@ -199,7 +199,7 @@ under the License. asc - sha1 + sha512 @@ -208,7 +208,7 @@ under the License. asc - sha1 + sha512 @@ -217,7 +217,7 @@ under the License. asc - sha1 + sha512 @@ -226,7 +226,7 @@ under the License. asc - sha1 + sha512 @@ -235,7 +235,7 @@ under the License. asc - sha1 + sha512 @@ -244,7 +244,7 @@ under the License. asc - sha1 + sha512 @@ -253,7 +253,7 @@ under the License. asc - sha1 + sha512 @@ -262,7 +262,7 @@ under the License. asc - sha1 + sha512 @@ -275,7 +275,7 @@ under the License.
-

When downloading from a mirror please check the SHA1 checksums as well as verifying the OpenPGP compatible +

When downloading from a mirror please check the SHA512 checksums as well as verifying the OpenPGP compatible signature available from the main Apache site. The KEYS file contains the public keys used for signing the release. It is recommended that a web of trust is used to confirm the identity of these keys.

@@ -284,8 +284,8 @@ under the License. -

You can check the SHA1 checksum with:

- +

You can check the SHA512 checksum with:

+
http://git-wip-us.apache.org/repos/asf/syncope/blob/a3d0f09c/src/site/xdoc/release-process.xml ---------------------------------------------------------------------- diff --git a/src/site/xdoc/release-process.xml b/src/site/xdoc/release-process.xml index 781bfdf..5c0c52c 100644 --- a/src/site/xdoc/release-process.xml +++ b/src/site/xdoc/release-process.xml @@ -297,7 +297,7 @@ do done for file in `find . -name '*.deb' -or -name '*.jar' -or -name '*.zip' -or -name '*.nbm'`; do - openssl sha1 $file | sed 's/.*= //' > $file.sha1 + openssl sha512 $file | sed 's/.*= //' > $file.sha512 done cd ..