diff options
author | Rob Austein <sra@hactrn.net> | 2012-02-03 22:51:23 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2012-02-03 22:51:23 +0000 |
commit | 3fb8a6487e7dbaddda4eda0b0d3b38b1de6794c8 (patch) | |
tree | 52c0135fbf65da18406c8f53308cf0ba7982f361 /rpkid/tests/testpoke.py | |
parent | 39ee5dd4b01e3287f6f67c556d0b140add0f458f (diff) |
Change manifest filename extension from .mnf to .mft, to comply with
the soon-to-be RFC. Closes #37.
svn path=/trunk/; revision=4288
Diffstat (limited to 'rpkid/tests/testpoke.py')
-rw-r--r-- | rpkid/tests/testpoke.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/tests/testpoke.py b/rpkid/tests/testpoke.py index 26cd29aa..8851a821 100644 --- a/rpkid/tests/testpoke.py +++ b/rpkid/tests/testpoke.py @@ -137,7 +137,7 @@ def do_issue(): q_pdu = rpki.up_down.issue_pdu() req_key = get_PEM("cert-request-key", rpki.x509.RSA, yaml_req) or cms_key sia = ((rpki.oids.name2oid["id-ad-caRepository"], ("uri", yaml_req["sia"][0])), - (rpki.oids.name2oid["id-ad-rpkiManifest"], ("uri", yaml_req["sia"][0] + req_key.gSKI() + ".mnf"))) + (rpki.oids.name2oid["id-ad-rpkiManifest"], ("uri", yaml_req["sia"][0] + req_key.gSKI() + ".mft"))) q_pdu.class_name = yaml_req["class"] q_pdu.pkcs10 = rpki.x509.PKCS10.create_ca(req_key, sia) query_up_down(q_pdu) |