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 8F9D11389E2 for ; Tue, 23 Dec 2014 02:50:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8113E08C6; Tue, 23 Dec 2014 02:50:07 +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 6BD92E08C6 for ; Tue, 23 Dec 2014 02:50:07 +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 0D1BA33FB4C for ; Tue, 23 Dec 2014 02:50:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 837A5D2A2 for ; Tue, 23 Dec 2014 02:50:04 +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: <1419302913.d2092c5d6d32265f237544616e4d46d88f009eeb.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: d2092c5d6d32265f237544616e4d46d88f009eeb X-VCS-Branch: master Date: Tue, 23 Dec 2014 02:50:04 +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: 366a96fd-1aa6-492c-b777-7c18989cf0ff X-Archives-Hash: c4784b98000fb44f31ce76259374c7f7 commit: d2092c5d6d32265f237544616e4d46d88f009eeb Author: Brian Dolbec gentoo org> AuthorDate: Mon Dec 22 22:27:30 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Tue Dec 23 02:48:33 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=d2092c5d 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'],