From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0337F138335 for ; Wed, 15 Aug 2018 01:06:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E81D0E08C9; Wed, 15 Aug 2018 01:05:59 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C1B9DE08C9 for ; Wed, 15 Aug 2018 01:05:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B4F07335C95 for ; Wed, 15 Aug 2018 01:05:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DCA043A9 for ; Wed, 15 Aug 2018 01:05:54 +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: <1534295062.0b2edc8ff515b404efd8284b3b961b9ffdb4223e.dolsen@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: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 0b2edc8ff515b404efd8284b3b961b9ffdb4223e X-VCS-Branch: master Date: Wed, 15 Aug 2018 01:05:54 +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: a6166969-f33d-46a8-82c1-a3a5164f2d70 X-Archives-Hash: 9da3d0ddc5be814e5a99fa384e06ff16 commit: 0b2edc8ff515b404efd8284b3b961b9ffdb4223e Author: Brian Dolbec dolsen gentoo org> AuthorDate: Wed Aug 15 01:04:22 2018 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Wed Aug 15 01:04:22 2018 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-keys.git/commit/?id=0b2edc8f gkeys checks.py: Update glep 63 specs gkeys/gkeys/checks.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gkeys/gkeys/checks.py b/gkeys/gkeys/checks.py index 7610d70..8119395 100644 --- a/gkeys/gkeys/checks.py +++ b/gkeys/gkeys/checks.py @@ -51,18 +51,17 @@ SPEC_STAT = ['', '','', False, False, False, False, False, False, False, False, # and approved options, limits TEST_SPEC = { 'bits': { - 'DSA': 2048, 'RSA': 2048, }, - 'expire': 5 * 365, # in days + 'expire': 900, # in days 'subkeys': { # warning/error mode 'encrypt': { 'mode': 'notice', - 'expire': 5 * 365, + 'expire': 900, }, 'sign': { 'mode': 'error', - 'expire': 5 * 365, + 'expire': 900, }, }, 'algorithms': ['DSA', 'RSA', '1', '2', '3', '17'],