diff options
author | Rob Austein <sra@hactrn.net> | 2007-10-05 03:32:25 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-10-05 03:32:25 +0000 |
commit | 6cbac857412f4042087c467a7c3f791fe80c87d4 (patch) | |
tree | ca0f27871eb20b8202dcd4f117c3d00be30b7b6f /scripts/pkcs10.py | |
parent | 9ff29e56f29bf25740581a1b43ad90f3a208d5a8 (diff) |
Checkpoint
svn path=/scripts/pkcs10.py; revision=1095
Diffstat (limited to 'scripts/pkcs10.py')
-rw-r--r-- | scripts/pkcs10.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/pkcs10.py b/scripts/pkcs10.py index 3a88b779..683f94df 100644 --- a/scripts/pkcs10.py +++ b/scripts/pkcs10.py @@ -13,7 +13,7 @@ def hexify(thing): return ":".join(["%02X" % ord(i) for i in thing]) for name in glob.glob("resource-cert-samples/*.req") + glob.glob("biz-certs/*.req"): - pkcs10 = rpki.x509.PKCS10_Request(Auto_file = name).get_POWpkix() + pkcs10 = rpki.x509.PKCS10(Auto_file = name).get_POWpkix() print "[", name, "]" |