aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gkeys/gkeys/checks.py7
1 files 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'],