commit: d2092c5d6d32265f237544616e4d46d88f009eeb Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org> AuthorDate: Mon Dec 22 22:27:30 2014 +0000 Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> 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'],