aboutsummaryrefslogtreecommitdiff
path: root/rpkid/rootd.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/rootd.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/rootd.py')
-rwxr-xr-xrpkid/rootd.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/rpkid/rootd.py b/rpkid/rootd.py
index 06819ff0..feae6e91 100755
--- a/rpkid/rootd.py
+++ b/rpkid/rootd.py
@@ -177,10 +177,11 @@ cfg = rpki.config.parser(cfg_file, "rootd")
cms_ta = rpki.x509.X509(Auto_file = cfg.get("cms-ta"))
cms_key = rpki.x509.RSA(Auto_file = cfg.get("cms-key"))
-cms_certs = rpki.x509.X509_chain(Auto_files = cfg.multiget("cms-certs"))
+cms_certs = rpki.x509.X509_chain(Auto_files = cfg.multiget("cms-cert"))
https_key = rpki.x509.RSA(Auto_file = cfg.get("https-key"))
-https_certs = rpki.x509.X509_chain(Auto_files = cfg.multiget("https-certs"))
+https_certs = rpki.x509.X509_chain(Auto_files = cfg.multiget("https-cert"))
+https_ta = rpki.x509.X509_chain(Auto_files = cfg.multiget("https-ta"))
https_server_host = cfg.get("server-host", "")
https_server_port = int(cfg.get("server-port"))
@@ -197,6 +198,7 @@ rootd_cert = cfg.get("rootd_cert", rootd_base + "rootd.cer")
rpki.https.server(privateKey = https_key,
certChain = https_certs,
+ x509TrustList = https_ta,
host = https_server_host,
port = https_server_port,
handlers = up_down_handler)