diff options
author | Magnus Ahltorp <map@kth.se> | 2015-02-27 13:53:32 +0100 |
---|---|---|
committer | Magnus Ahltorp <map@kth.se> | 2015-02-27 14:24:26 +0100 |
commit | 90bd73177964246a0e1a5d6c5e4255dcc8ec700d (patch) | |
tree | 8a9659ffe0635f061f182e94fb3cecc95f46ed37 /tools/testcase1.py | |
parent | 103e0ee850404a5c8dc69bbbf79b2508a9c55d7a (diff) |
Require authentication for merge calls
Diffstat (limited to 'tools/testcase1.py')
-rwxr-xr-x | tools/testcase1.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testcase1.py b/tools/testcase1.py index a41a783..c87e8eb 100755 --- a/tools/testcase1.py +++ b/tools/testcase1.py @@ -136,7 +136,7 @@ def get_and_check_entry(timestamp, chain, leaf_index): len(submittedcertchain)) def merge(): - return subprocess.call(["./merge.py", "--baseurl", "https://127.0.0.1:8080/", "--frontend", "https://127.0.0.1:8082/", "--storage", "https://127.0.0.1:8081/", "--mergedb", "../rel/mergedb", "--keyfile", "../rel/test/eckey.pem"]) + return subprocess.call(["./merge.py", "--baseurl", "https://127.0.0.1:8080/", "--frontend", "https://127.0.0.1:8082/", "--storage", "https://127.0.0.1:8081/", "--mergedb", "../rel/mergedb", "--keyfile", "../rel/test/eckey.pem", "--own-keyname", "merge-1", "--own-keyfile", "../rel/privatekeys/merge-1-private.pem"]) print_and_check_tree_size(0) |