commit: 62c2253da57fe8fdbbc52ee0066c260ed24d9a8d
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: Mon Dec 22 22:58:09 2014 +0000
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=62c2253d
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'],