diff options
author | Rob Austein <sra@hactrn.net> | 2008-04-07 21:39:17 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2008-04-07 21:39:17 +0000 |
commit | 14bd2769a9392101fd34b33ffa7d5d211511d97e (patch) | |
tree | b6b7c7e8c9a7fef715018ae2f80ee43748817037 /rpkid/testpoke.py | |
parent | fc8fb08d155a9b30f04cc67ba351725ef4051881 (diff) |
Checkpoint. Add (untested) ability to call out for a dynamic
x509Store verifier object.
svn path=/rpkid/cronjob.py; revision=1627
Diffstat (limited to 'rpkid/testpoke.py')
-rw-r--r-- | rpkid/testpoke.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rpkid/testpoke.py b/rpkid/testpoke.py index 3d23751b..185c99ea 100644 --- a/rpkid/testpoke.py +++ b/rpkid/testpoke.py @@ -90,9 +90,9 @@ def query_up_down(q_pdu): rpki.relaxng.up_down.assertValid(q_elt) q_cms = rpki.cms.xml_sign(q_elt, cms_key, cms_certs, encoding = "UTF-8") r_cms = rpki.https.client( - x509TrustList = https_ta, - privateKey = https_key, - certChain = https_certs, + server_ta = https_ta, + client_key = https_key, + client_certs = https_certs, msg = q_cms, url = yaml_data["posturl"]) r_xml = rpki.cms.verify(r_cms, cms_ta) |