diff options
author | Rob Austein <sra@hactrn.net> | 2014-02-25 23:04:11 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2014-02-25 23:04:11 +0000 |
commit | ce5fd146cb746836c46c7f1ab435ec7d3d49af4f (patch) | |
tree | ed6ac8bd95d18b1a18e6d50e485f9db77bf76202 /rpkid/tests/yamltest.py | |
parent | de95fb9525bf5f1ced2fb90924b31b78494e1e87 (diff) |
Router certificates working again after changes to get subject name out of the PKCS !#10.
svn path=/branches/tk671/; revision=5683
Diffstat (limited to 'rpkid/tests/yamltest.py')
-rw-r--r-- | rpkid/tests/yamltest.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/rpkid/tests/yamltest.py b/rpkid/tests/yamltest.py index 9525a048..5eb3bd2f 100644 --- a/rpkid/tests/yamltest.py +++ b/rpkid/tests/yamltest.py @@ -129,9 +129,7 @@ class router_cert(object): self.asn = rpki.resource_set.resource_set_as("".join(str(asn).split())) self.router_id = router_id self.keypair = rpki.x509.ECDSA.generate(self.ecparams()) - self.pkcs10 = rpki.x509.PKCS10.create( - keypair = self.keypair, - eku = (rpki.oids.id_kp_bgpsec_router,)) + self.pkcs10 = rpki.x509.PKCS10.create(keypair = self.keypair) self.gski = self.pkcs10.gSKI() def __eq__(self, other): |