1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 08:04:49 +01:00

fix typo in certauth

This commit is contained in:
Ilya Kreymer 2014-07-26 15:27:02 -07:00
parent e58a63a9fe
commit ae35d92dde

View File

@ -13,6 +13,7 @@ class CertificateAuthority(object):
self.ca_file = ca_file
self.certs_dir = certs_dir
self.certname = certname
if not os.path.exists(ca_file):
self._generate_ca()
@ -34,7 +35,7 @@ class CertificateAuthority(object):
self.cert.set_version(3)
# avoid sec_error_reused_issuer_and_serial
self.cert.set_serial_number(random.randint(0,2**64-1))
self.cert.get_subject().CN = certname
self.cert.get_subject().CN = self.certname
self.cert.gmtime_adj_notBefore(0) # now
self.cert.gmtime_adj_notAfter(100*365*24*60*60) # 100 yrs in future
self.cert.set_issuer(self.cert.get_subject())