summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-11-11 14:44:08 +0100
committerChristian Grothoff <christian@grothoff.org>2015-11-11 14:44:08 +0100
commit9bbfca568feed4b73a31e657955cf0005c17cdb5 (patch)
tree8baf2b9d95603f7b91ad4be2ac68dab71c53f022 /src/include
parente5988bf353ab4d2251cfc98c61322ec95cbf303c (diff)
downloadexchange-9bbfca568feed4b73a31e657955cf0005c17cdb5.tar.gz
exchange-9bbfca568feed4b73a31e657955cf0005c17cdb5.tar.bz2
exchange-9bbfca568feed4b73a31e657955cf0005c17cdb5.zip
updating code to match simplified specification (#4039)
Diffstat (limited to 'src/include')
-rw-r--r--src/include/taler_json_lib.h15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/include/taler_json_lib.h b/src/include/taler_json_lib.h
index 63cb81791..8bdcf2709 100644
--- a/src/include/taler_json_lib.h
+++ b/src/include/taler_json_lib.h
@@ -53,18 +53,6 @@ TALER_json_from_abs (struct GNUNET_TIME_Absolute stamp);
/**
- * Convert a signature (with purpose) to a JSON object representation.
- *
- * @param purpose purpose of the signature
- * @param signature the signature
- * @return the JSON reporesentation of the signature with purpose
- */
-json_t *
-TALER_json_from_eddsa_sig (const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose,
- const struct GNUNET_CRYPTO_EddsaSignature *signature);
-
-
-/**
* Convert RSA public key to JSON.
*
* @param pk public key to convert
@@ -93,7 +81,8 @@ TALER_json_from_rsa_signature (struct GNUNET_CRYPTO_rsa_Signature *sig);
* @return json string that encodes @a data
*/
json_t *
-TALER_json_from_data (const void *data, size_t size);
+TALER_json_from_data (const void *data,
+ size_t size);
/**