Skip to content

Commit

Permalink
certauth: fix max cert duration to avoid int overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ikreymer committed Jan 11, 2015
1 parent 7ae0ff8 commit 14657fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pywb/framework/certauth.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@


#=================================================================
# Duration of 100 years
CERT_DURATION = 100 * 365 * 24 * 60 * 60
# Duration of 10 years
CERT_DURATION = 10 * 365 * 24 * 60 * 60

CERTS_DIR = './ca/certs/'

Expand Down

0 comments on commit 14657fb

Please sign in to comment.