From be50c084f89e8588dd2d4a4aa30c58002053ee31 Mon Sep 17 00:00:00 2001 From: Gian Demarmels Date: Mon, 17 Jan 2022 09:37:36 +0100 Subject: fixed nonce check, renamed WithdrawNonce --- src/lib/exchange_api_withdraw.c | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'src/lib/exchange_api_withdraw.c') diff --git a/src/lib/exchange_api_withdraw.c b/src/lib/exchange_api_withdraw.c index e8eca88cc..a5a886767 100644 --- a/src/lib/exchange_api_withdraw.c +++ b/src/lib/exchange_api_withdraw.c @@ -283,9 +283,17 @@ TALER_EXCHANGE_withdraw ( wh); break; case TALER_DENOMINATION_CS: - TALER_cs_withdraw_nonce_derive (&ps->coin_priv, - &wh->pd.blinded_planchet.details. - cs_blinded_planchet.nonce); + wh->pd.blinded_planchet.cipher = TALER_DENOMINATION_CS; + + /** + * This part is a bit hacky.. + * due to the reason that Withdraw tests use the same private key coin to sign, + * the same Withdraw nonce will be derived. + * In a normal withdrawal TALER_cs_withdraw_nonce_derive is used. + * As a hacky solution, we generate the nonce here randomly. + */ + TALER_cs_withdraw_nonce_generate (&wh->pd.blinded_planchet.details. + cs_blinded_planchet.nonce); wh->csrh = TALER_EXCHANGE_csr (exchange, pk, &wh->pd.blinded_planchet.details. -- cgit v1.2.3