aboutsummaryrefslogtreecommitdiff
path: root/rpkid/irbe-cli.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2008-03-27 23:40:44 +0000
committerRob Austein <sra@hactrn.net>2008-03-27 23:40:44 +0000
commit5aa99a66a4cd1064eda1880879e034b7ae8058ac (patch)
tree631cbfda17e2ce633228795afe702d07db922ab8 /rpkid/irbe-cli.py
parente1e5eb6d4541d865b1fcda093c90da8ba93b537b (diff)
Finally got client cert checks working with tlslite -- then promptly
disabled them again in testbed.py (commented out in generated config), because I need to rework the internal trust anchor setup before the up-down protocol will have a prayer of working with this enabled. svn path=/rpkid/OPERATION; revision=1565
Diffstat (limited to 'rpkid/irbe-cli.py')
-rwxr-xr-xrpkid/irbe-cli.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpkid/irbe-cli.py b/rpkid/irbe-cli.py
index b6ce7479..af75d430 100755
--- a/rpkid/irbe-cli.py
+++ b/rpkid/irbe-cli.py
@@ -179,10 +179,10 @@ except lxml.etree.DocumentInvalid:
q_cms = rpki.cms.sign(q_xml,
rpki.x509.RSA(Auto_file = cfg.get("cms-key")),
- rpki.x509.X509_chain(Auto_files = cfg.multiget("cms-certs")))
+ rpki.x509.X509_chain(Auto_files = cfg.multiget("cms-cert")))
r_cms = rpki.https.client(privateKey = rpki.x509.RSA(Auto_file = cfg.get("https-key")),
- certChain = rpki.x509.X509_chain(Auto_files = cfg.multiget("https-certs")),
+ certChain = rpki.x509.X509_chain(Auto_files = cfg.multiget("https-cert")),
x509TrustList = rpki.x509.X509_chain(Auto_files = cfg.multiget("https-ta")),
url = cfg.get("https-url"),
msg = q_cms)