diff options
author | Linus Nordberg <linus@nordu.net> | 2015-07-16 11:52:27 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2015-09-27 13:38:30 +0200 |
commit | 3adc635ef9857dc4e988448662d99f69abc4719a (patch) | |
tree | 3ecae561e3b97c58d604094529103285c5bfb3d7 /tools | |
parent | 11c2617487dbfd07881a738be40b5ad1452bb9e9 (diff) |
Accept any kind of submitted data, not only X.509 certificate chains.
Have add_chain() take a blob instead of a cert leaf and a chain.
Rename ct/v1/add-chain -> add-blob.
Remove ct/v1/add-pre-chain.
Remove chain checking code.
Generate allowed_client config matching new HTTP API.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/compileconfig.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/compileconfig.py b/tools/compileconfig.py index cac1be6..6881705 100755 --- a/tools/compileconfig.py +++ b/tools/compileconfig.py @@ -135,8 +135,7 @@ def allowed_clients_mergesecondary(primarymergenode): def allowed_clients_public(): noauth = Symbol("noauth") return [ - ("/ct/v1/add-chain", noauth), - ("/ct/v1/add-pre-chain", noauth), + ("/ct/v1/add-blob", noauth), ("/ct/v1/get-sth", noauth), ("/ct/v1/get-sth-consistency", noauth), ("/ct/v1/get-proof-by-hash", noauth), |