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/rpki/pkcs10.py | |
parent | 9ff29e56f29bf25740581a1b43ad90f3a208d5a8 (diff) |
Checkpoint
svn path=/scripts/pkcs10.py; revision=1095
Diffstat (limited to 'scripts/rpki/pkcs10.py')
-rw-r--r-- | scripts/rpki/pkcs10.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rpki/pkcs10.py b/scripts/rpki/pkcs10.py index c298db20..4d77c442 100644 --- a/scripts/rpki/pkcs10.py +++ b/scripts/rpki/pkcs10.py @@ -27,7 +27,7 @@ def make_request(keypair): i,o = os.popen2(["openssl", "req", "-config", config_filename, "-new", "-key", "/dev/stdin", "-outform", "DER"]) i.write(keypair.get_PEM()) i.close() - pkcs10 = rpki.x509.PKCS10_Request(DER = o.read()) + pkcs10 = rpki.x509.PKCS10(DER = o.read()) o.close() finally: |