diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-11-11 14:44:08 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-11-11 14:44:08 +0100 |
commit | 9bbfca568feed4b73a31e657955cf0005c17cdb5 (patch) | |
tree | 8baf2b9d95603f7b91ad4be2ac68dab71c53f022 /src/include | |
parent | e5988bf353ab4d2251cfc98c61322ec95cbf303c (diff) |
updating code to match simplified specification (#4039)
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_json_lib.h | 15 |
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); /** |