diff options
author | Rob Austein <sra@hactrn.net> | 2007-10-06 18:13:43 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-10-06 18:13:43 +0000 |
commit | 258948849c072360876d02c1300853c293c31ab3 (patch) | |
tree | 054bf628aed985f05865b0a297b53b019f15324d /scripts/rpkid.py | |
parent | e364ef51ed453b0d438ed5a5453179d552c298a1 (diff) |
Consolidate and debug PKCS #10 code.
svn path=/pow/POW-0.7/lib/pkix.py; revision=1104
Diffstat (limited to 'scripts/rpkid.py')
-rwxr-xr-x | scripts/rpkid.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/rpkid.py b/scripts/rpkid.py index 95632ba6..efcb5d2d 100755 --- a/scripts/rpkid.py +++ b/scripts/rpkid.py @@ -57,10 +57,10 @@ gctx.cur = gctx.db.cursor() gctx.cms_ta_irdb = rpki.x509.X509(Auto_file = gctx.cfg.get(gctx.cfg_section, "cms-ta-irdb")) gctx.cms_ta_irbe = rpki.x509.X509(Auto_file = gctx.cfg.get(gctx.cfg_section, "cms-ta-irbe")) -gctx.cms_key = rpki.x509.RSA_Keypair(Auto_file = gctx.cfg.get(gctx.cfg_section, "cms-key")) +gctx.cms_key = rpki.x509.RSA(Auto_file = gctx.cfg.get(gctx.cfg_section, "cms-key")) gctx.cms_certs = rpki.x509.X509_chain(Auto_files = gctx.cfg.multiget(gctx.cfg_section, "cms-cert")) -gctx.https_key = rpki.x509.RSA_Keypair(Auto_file = gctx.cfg.get(gctx.cfg_section, "https-key")) +gctx.https_key = rpki.x509.RSA(Auto_file = gctx.cfg.get(gctx.cfg_section, "https-key")) gctx.https_certs = rpki.x509.X509_chain(Auto_files = gctx.cfg.multiget(gctx.cfg_section, "https-cert")) gctx.https_tas = rpki.x509.X509_chain(Auto_files = gctx.cfg.multiget(gctx.cfg_section, "https-ta")) |