From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6ACC9138ACE for ; Tue, 23 Dec 2014 00:13:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94B7DE0933; Tue, 23 Dec 2014 00:13:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D9E24E0933 for ; Tue, 23 Dec 2014 00:13:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D792434058A for ; Tue, 23 Dec 2014 00:13:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7E4CCD282 for ; Tue, 23 Dec 2014 00:13:25 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1419293493.7e2f8e8ca345ee38fd5814ec7d151f6bfed56574.dol-sen@gentoo> Subject: [gentoo-commits] proj/gentoo-keys:master commit in: gkeys/gkeys/ X-VCS-Repository: proj/gentoo-keys X-VCS-Files: gkeys/gkeys/checks.py X-VCS-Directories: gkeys/gkeys/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 7e2f8e8ca345ee38fd5814ec7d151f6bfed56574 X-VCS-Branch: master Date: Tue, 23 Dec 2014 00:13:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 235c9c0f-55ef-42fa-913b-8fe3a6b9f392 X-Archives-Hash: 5e424ec007aa375eb96f70b322f13392 commit: 7e2f8e8ca345ee38fd5814ec7d151f6bfed56574 Author: Brian Dolbec gentoo org> AuthorDate: Mon Dec 22 22:27:30 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Tue Dec 23 00:11:33 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=7e2f8e8c gkeys/checks.py: Correctly set the exiry to 5 years (glep 63) --- gkeys/gkeys/checks.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gkeys/gkeys/checks.py b/gkeys/gkeys/checks.py index db3d59f..b66165b 100644 --- a/gkeys/gkeys/checks.py +++ b/gkeys/gkeys/checks.py @@ -54,15 +54,15 @@ TEST_SPEC = { 'DSA': 2048, 'RSA': 2048, }, - 'expire': 3 * 365, # in days + 'expire': 5 * 365, # in days 'subkeys': { # warning/error mode 'encrypt': { 'mode': 'notice', - 'expire': 3 * 365, + 'expire': 5 * 365, }, 'sign': { 'mode': 'error', - 'expire': 365, + 'expire': 5 * 365, }, }, 'algorithms': ['DSA', 'RSA', '1', '2', '3', '17'],