|
out, err = Popen(["openssl", "x509", "-text", "-noout"], stdin=PIPE, stdout=PIPE, stderr=PIPE).communicate(crt)
|
|
out, err = Popen(["openssl", "x509", "-text", "-noout"], stdin=PIPE, stdout=PIPE, stderr=PIPE).communicate(crt)
|
|
self.assertIn("Issuer: CN=Fake LE Intermediate", out.decode("utf8"))
|
|
self.assertIn("Issuer: CN=Fake LE Intermediate", out.decode("utf8"))
|