diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-09-24 11:51:47 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-09-24 11:51:47 +0200 |
commit | 7a3b1c6b88a86ccb98a9d60675f8f0c1a7e3fe45 (patch) | |
tree | 7a89527ea1551a4b97897db01bff1c942825811d /src/include/taler_crypto_lib.h | |
parent | 4c220dce4d5ef33e00e937e236a744324af9dcf0 (diff) |
fix various FIXMEs
Diffstat (limited to 'src/include/taler_crypto_lib.h')
-rw-r--r-- | src/include/taler_crypto_lib.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/include/taler_crypto_lib.h b/src/include/taler_crypto_lib.h index ffb48285f..b7666610e 100644 --- a/src/include/taler_crypto_lib.h +++ b/src/include/taler_crypto_lib.h @@ -5889,9 +5889,8 @@ TALER_age_commitment_hash ( * @param age The actual age for which an age commitment is generated * @param seed The seed that goes into the key generation. MUST be chosen uniformly random. * @param[out] comm_proof The generated age commitment, ->priv and ->pub allocated via GNUNET_malloc() on success - * @return #GNUNET_OK on success, #GNUNET_SYSERR otherwise */ -enum GNUNET_GenericReturnValue +void TALER_age_restriction_commit ( const struct TALER_AgeMask *mask, uint8_t age, @@ -6024,7 +6023,7 @@ TALER_age_commitment_base_public_key; * @param max_age The maximum age for this coin. * @param[out] comm_proof The commitment and proof for age restriction for age @a max_age */ -enum GNUNET_GenericReturnValue +void TALER_age_restriction_from_secret ( const struct TALER_PlanchetMasterSecretP *secret, const struct TALER_AgeMask *mask, |