diff options
author | Rob Austein <sra@hactrn.net> | 2008-05-08 20:24:54 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2008-05-08 20:24:54 +0000 |
commit | eccd9c444f16168b854772865db5bdf5474cc772 (patch) | |
tree | 5998e7e651cce5dd6650cfefb565c061ea98ce74 | |
parent | 98f953e1dcc6d5e7c572686c743d81394158e196 (diff) |
Enable pathLenConstraints
svn path=/rpkid/cross-certify.py; revision=1758
-rw-r--r-- | rpkid/cross-certify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/cross-certify.py b/rpkid/cross-certify.py index 442035bd..1cd6dd95 100644 --- a/rpkid/cross-certify.py +++ b/rpkid/cross-certify.py @@ -89,7 +89,7 @@ x.setExtensions(((rpki.oids.name2oid["subjectKeyIdentifier"], False, (rpki.oids.name2oid["authorityKeyIdentifier"], False, (parent.get_SKI(), (), None)), (rpki.oids.name2oid["basicConstraints"], True, - (1, None)))) + (1, 0)))) x.sign(keypair.get_POW(), POW.SHA256_DIGEST) cert = rpki.x509.X509(POWpkix = x) |