Merge pull request #1681 from mhils/issue-1676

Fix #1676
This commit is contained in:
Maximilian Hils
2016-10-27 15:13:32 -07:00
committed by GitHub

View File

@@ -102,7 +102,7 @@ def dummy_cert(privkey, cacert, commonname, sans):
cert.gmtime_adj_notBefore(-3600 * 48)
cert.gmtime_adj_notAfter(DEFAULT_EXP)
cert.set_issuer(cacert.get_subject())
if commonname is not None:
if commonname is not None and len(commonname) < 64:
cert.get_subject().CN = commonname
cert.set_serial_number(int(time.time() * 10000))
if ss: