diff options
author | Gian Demarmels <gian@demarmels.org> | 2021-12-23 12:36:04 +0100 |
---|---|---|
committer | Gian Demarmels <gian@demarmels.org> | 2022-02-04 15:31:50 +0100 |
commit | db9b84970dbd5aacc9eca1f19bb03d27a06e3452 (patch) | |
tree | 0b8e1458364e891d0d6a6e9c555d3d5e27983b9b /src/include/taler_crypto_lib.h | |
parent | 5d2157a8f6edeaf124e26561ed50c458af9df00d (diff) |
add sign and verify implementation
Diffstat (limited to 'src/include/taler_crypto_lib.h')
-rw-r--r-- | src/include/taler_crypto_lib.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/taler_crypto_lib.h b/src/include/taler_crypto_lib.h index 3684c751..87e38896 100644 --- a/src/include/taler_crypto_lib.h +++ b/src/include/taler_crypto_lib.h @@ -1095,7 +1095,8 @@ TALER_denom_sig_unblind ( struct TALER_DenominationSignature *denom_sig, const struct TALER_BlindedDenominationSignature *bdenom_sig, const union TALER_DenominationBlindingKeyP *bks, - const struct TALER_DenominationPublicKey *denom_pub); + const struct TALER_DenominationPublicKey *denom_pub, + ...); /** @@ -1492,7 +1493,8 @@ TALER_planchet_to_coin ( const struct TALER_BlindedDenominationSignature *blind_sig, const struct TALER_PlanchetSecretsP *ps, const struct TALER_CoinPubHash *c_hash, - struct TALER_FreshCoin *coin); + struct TALER_FreshCoin *coin, + ...); /* ****************** Refresh crypto primitives ************* */ |