diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-04-17 18:28:17 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-04-17 18:28:17 +0200 |
commit | c90e479ea5dcb5c994d765110fa01e88fced7e12 (patch) | |
tree | 990d5a7c781de504e19f493cf23215dd642fb982 /src/mint/taler-mint-httpd_test.h | |
parent | 6cb072ec5f67c55ed624d46b427112fd5945f7f6 (diff) |
implementing /test/base32
Diffstat (limited to 'src/mint/taler-mint-httpd_test.h')
-rw-r--r-- | src/mint/taler-mint-httpd_test.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/mint/taler-mint-httpd_test.h b/src/mint/taler-mint-httpd_test.h index 342b67b82..6584af581 100644 --- a/src/mint/taler-mint-httpd_test.h +++ b/src/mint/taler-mint-httpd_test.h @@ -27,6 +27,29 @@ /** + * Handle a "/test/base32" request. Parses the JSON in the post, runs + * the Crockford Base32 decoder on the "input" field in the JSON, + * hashes the result and sends the hashed value back as a JSON + * string with in Base32 Crockford encoding. Thus, this API + * allows testing the hashing and Crockford encoding/decoding + * functions. + * + * @param rh context of the handler + * @param connection the MHD connection to handle + * @param[in,out] connection_cls the connection's closure (can be updated) + * @param upload_data upload data + * @param[in,out] upload_data_size number of bytes (left) in @a upload_data + * @return MHD result code + */ +int +TMH_TEST_handler_test_base32 (struct TMH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size); + + +/** * Handle a "/test" request. Parses the JSON in the post. * * @param rh context of the handler |