From 5aa99a66a4cd1064eda1880879e034b7ae8058ac Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Thu, 27 Mar 2008 23:40:44 +0000 Subject: 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 --- rpkid/irbe-cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rpkid/irbe-cli.py') 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) -- cgit v1.2.3