diff options
author | Christian Grothoff <grothoff@gnunet.org> | 2021-10-25 18:37:06 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-10-27 09:23:13 +0200 |
commit | 74234f75a41222f6a630106be75a799f4f02ec1d (patch) | |
tree | 0462b4a2c46d157cdeb07236c0b94962c9e185d9 /src/include | |
parent | f0951d34ddd525a04bcb9daabbc55bd1ced2575e (diff) |
-work on FTBFS
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_crypto_lib.h | 23 | ||||
-rw-r--r-- | src/include/taler_util.h | 11 |
2 files changed, 11 insertions, 23 deletions
diff --git a/src/include/taler_crypto_lib.h b/src/include/taler_crypto_lib.h index 266ab7289..f3f48c040 100644 --- a/src/include/taler_crypto_lib.h +++ b/src/include/taler_crypto_lib.h @@ -753,6 +753,17 @@ TALER_coin_pub_hash (const struct TALER_CoinSpendPublicKeyP *coin_pub, struct TALER_CoinPubHash *coin_h); +/** + * Compute the hash of a payto URI. + * + * @param payto URI to hash + * @param[out] h_payto where to write the hash + */ +void +TALER_payto_hash (const char *payto, + struct TALER_PaytoHash *h_payto); + + GNUNET_NETWORK_STRUCT_BEGIN /** @@ -1892,18 +1903,6 @@ TALER_exchange_offline_wire_del_verify ( /** - * Compute the hash of the given wire details. The resulting - * hash is what is signed by the master key. - * - * @param payto_uri bank account - * @param[out] hc set to the hash - */ -void -TALER_exchange_wire_signature_hash (const char *payto_uri, - struct TALER_PaytoHash *hc); - - -/** * Check the signature in @a master_sig. * * @param payto_uri URI that is signed diff --git a/src/include/taler_util.h b/src/include/taler_util.h index d62882b4c..4faa75c4f 100644 --- a/src/include/taler_util.h +++ b/src/include/taler_util.h @@ -328,17 +328,6 @@ TALER_payto_get_method (const char *payto_uri); /** - * Compute the hash of a payto URI. - * - * @param payto URI to hash - * @param[out] h_payto where to write the hash - */ -void -TALER_payto_hash (const char *payto, - struct TALER_PaytoHash *h_payto); - - -/** * Obtain the account name from a payto URL. * * @param payto an x-taler-bank payto URL |