aboutsummaryrefslogtreecommitdiffstats
path: root/netlib
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2015-02-17 11:59:07 +1300
committerAldo Cortesi <aldo@nullcube.com>2015-02-17 11:59:07 +1300
commitc9de3e770b8b8567cc3c233e9d0f82fd7a47e634 (patch)
treebce9818a0027601583ba9112e9c22a7070a24ed7 /netlib
parentb6af3fddf4ee2c45a722bd5087c86cee59b8cfa0 (diff)
downloadmitmproxy-c9de3e770b8b8567cc3c233e9d0f82fd7a47e634.tar.gz
mitmproxy-c9de3e770b8b8567cc3c233e9d0f82fd7a47e634.tar.bz2
mitmproxy-c9de3e770b8b8567cc3c233e9d0f82fd7a47e634.zip
By popular demand, bump dummy cert expiry to 5 years
fixes #52
Diffstat (limited to 'netlib')
-rw-r--r--netlib/certutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/netlib/certutils.py b/netlib/certutils.py
index af6177d8..948eb85d 100644
--- a/netlib/certutils.py
+++ b/netlib/certutils.py
@@ -61,7 +61,7 @@ def dummy_cert(privkey, cacert, commonname, sans):
cert = OpenSSL.crypto.X509()
cert.gmtime_adj_notBefore(-3600*48)
- cert.gmtime_adj_notAfter(60 * 60 * 24 * 30)
+ cert.gmtime_adj_notAfter(60 * 60 * 24 * 30 * 365 * 5)
cert.set_issuer(cacert.get_subject())
cert.get_subject().CN = commonname
cert.set_serial_number(int(time.time()*10000))