diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-04-18 00:30:21 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-04-18 00:30:21 +0200 |
commit | c5b0d8c76eacbafc4990f247e1de41304265801a (patch) | |
tree | 3bb86b7fb584a6ec3c661ac888a9931ca853ad44 /src/mint/taler-mint-httpd.c | |
parent | c334d5ea05a0353afe3ca3ecd18b2353be2b2031 (diff) |
implementing /test/hkdf
Diffstat (limited to 'src/mint/taler-mint-httpd.c')
-rw-r--r-- | src/mint/taler-mint-httpd.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mint/taler-mint-httpd.c b/src/mint/taler-mint-httpd.c index b04583c2a..2b7d1d5e2 100644 --- a/src/mint/taler-mint-httpd.c +++ b/src/mint/taler-mint-httpd.c @@ -211,6 +211,13 @@ handle_mhd_request (void *cls, "Only POST is allowed", 0, &TMH_MHD_handler_send_json_pack_error, MHD_HTTP_METHOD_NOT_ALLOWED }, + { "/test/hkdf", MHD_HTTP_METHOD_POST, "application/json", + NULL, 0, + &TMH_TEST_handler_test_hkdf, MHD_HTTP_OK }, + { "/test/hkdf", NULL, "text/plain", + "Only POST is allowed", 0, + &TMH_MHD_handler_send_json_pack_error, MHD_HTTP_METHOD_NOT_ALLOWED }, + { "/test/ecdhe", MHD_HTTP_METHOD_POST, "application/json", NULL, 0, &TMH_TEST_handler_test_ecdhe, MHD_HTTP_OK }, |