diff options
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 |