diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-11-05 22:22:47 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-11-05 22:22:47 +0100 |
commit | ba627bf84c89ea93a117bce8563b30a3d460e633 (patch) | |
tree | 0a717d9d51f46dab6d1032a3181b441abcae746a /src/util/crypto.c | |
parent | ebbc250f8b86de14a5684addade285cb5d1ad9ac (diff) |
-fixes
Diffstat (limited to 'src/util/crypto.c')
-rw-r--r-- | src/util/crypto.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/crypto.c b/src/util/crypto.c index 99744304..668a91ad 100644 --- a/src/util/crypto.c +++ b/src/util/crypto.c @@ -197,7 +197,7 @@ TALER_planchet_prepare (const struct TALER_DenominationPublicKey *dk, GNUNET_assert (TALER_DENOMINATION_RSA == dk->cipher); if (GNUNET_YES != TALER_rsa_blind (c_hash, - &ps->blinding_key.bks, + &ps->blinding_key.rsa_bks, dk->details.rsa_public_key, &pd->coin_ev, &pd->coin_ev_size)) @@ -229,7 +229,7 @@ TALER_planchet_to_coin ( sig.cipher = TALER_DENOMINATION_RSA; sig.details.rsa_signature = TALER_rsa_unblind (blind_sig->details.blinded_rsa_signature, - &ps->blinding_key.bks, + &ps->blinding_key.rsa_bks, dk->details.rsa_public_key); if (GNUNET_OK != TALER_denom_pub_verify (dk, |